summaryrefslogtreecommitdiffstats
path: root/sc/inc/macromgr.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:56:21 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:59:10 +0100
commiteb1d9d3cda2da6b00749ff61ea63931f00a5b2b7 (patch)
tree4d31232cf0d58f153ca474ba8802344f954c9836 /sc/inc/macromgr.hxx
parentSome cppcheck cleaning (diff)
downloadcore-eb1d9d3cda2da6b00749ff61ea63931f00a5b2b7.tar.gz
core-eb1d9d3cda2da6b00749ff61ea63931f00a5b2b7.zip
port repository calc to boost unordered containers
Diffstat (limited to 'sc/inc/macromgr.hxx')
-rw-r--r--sc/inc/macromgr.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/macromgr.hxx b/sc/inc/macromgr.hxx
index 800dc877adce..4c8bad9e3ff8 100644
--- a/sc/inc/macromgr.hxx
+++ b/sc/inc/macromgr.hxx
@@ -34,7 +34,8 @@
#include "rtl/ustring.hxx"
#include "scdllapi.h"
-#include <hash_map>
+#include <boost/unordered_map.hpp>
+#include <boost/unordered_set.hpp>
#include <memory>
class ScDocument;
@@ -56,7 +57,7 @@ public:
void BroadcastModuleUpdate(const ::rtl::OUString& aModuleName);
private:
- typedef std::hash_map< ::rtl::OUString, bool, ::rtl::OUStringHash, ::std::equal_to< ::rtl::OUString > > NameBoolMap;
+ typedef boost::unordered_map< ::rtl::OUString, bool, ::rtl::OUStringHash, ::std::equal_to< ::rtl::OUString > > NameBoolMap;
NameBoolMap mhFuncToVolatile;
com::sun::star::uno::Reference< com::sun::star::container::XContainerListener > mxContainerListener;