diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 00:56:21 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 00:59:10 +0100 |
commit | eb1d9d3cda2da6b00749ff61ea63931f00a5b2b7 (patch) | |
tree | 4d31232cf0d58f153ca474ba8802344f954c9836 /sc/source/ui/view/gridwin2.cxx | |
parent | 82d08610465649dd1a49f8b7f6d4e7cf80f15c16 (diff) |
port repository calc to boost unordered containers
Diffstat (limited to 'sc/source/ui/view/gridwin2.cxx')
-rw-r--r-- | sc/source/ui/view/gridwin2.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/gridwin2.cxx b/sc/source/ui/view/gridwin2.cxx index 475ee13cd2f8..df6a7f3e9b10 100644 --- a/sc/source/ui/view/gridwin2.cxx +++ b/sc/source/ui/view/gridwin2.cxx @@ -61,13 +61,13 @@ #include "scabstdlg.hxx" #include <vector> -#include <hash_map> +#include <boost/unordered_map.hpp> using namespace com::sun::star; using ::com::sun::star::sheet::DataPilotFieldOrientation; using ::std::vector; using ::std::auto_ptr; -using ::std::hash_map; +using ::boost::unordered_map; using ::rtl::OUString; using ::rtl::OUStringHash; @@ -543,8 +543,8 @@ void ScGridWindow::DPLaunchFieldPopupMenu( void ScGridWindow::UpdateDPFromFieldPopupMenu() { - typedef hash_map<OUString, OUString, OUStringHash> MemNameMapType; - typedef hash_map<OUString, bool, OUStringHash> MemVisibilityType; + typedef boost::unordered_map<OUString, OUString, OUStringHash> MemNameMapType; + typedef boost::unordered_map<OUString, bool, OUStringHash> MemVisibilityType; if (!mpDPFieldPopup.get()) return; |