diff options
Diffstat (limited to 'sc/source/ui/inc/crnrdlg.hxx')
-rw-r--r-- | sc/source/ui/inc/crnrdlg.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/inc/crnrdlg.hxx b/sc/source/ui/inc/crnrdlg.hxx index bd0d974cd764..8a8540bbd5d8 100644 --- a/sc/source/ui/inc/crnrdlg.hxx +++ b/sc/source/ui/inc/crnrdlg.hxx @@ -34,7 +34,7 @@ #include <vcl/fixed.hxx> #include <vcl/lstbox.hxx> -#include <hash_map> +#include <boost/unordered_map.hpp> class ScViewData; class ScDocument; @@ -79,7 +79,7 @@ private: ScRangePairListRef xColNameRanges; ScRangePairListRef xRowNameRanges; - typedef ::std::hash_map< String, ScRange, ScStringHashCode, ::std::equal_to<String> > NameRangeMap; + typedef ::boost::unordered_map< String, ScRange, ScStringHashCode, ::std::equal_to<String> > NameRangeMap; NameRangeMap aRangeMap; ScViewData* pViewData; ScDocument* pDoc; |