summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/configuration
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-05 21:40:28 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-05 21:40:28 +0100
commit8851524e49922cd64d387015cdcc9aa4fcede151 (patch)
treee722aee2cfb903653d6616ce38d1f0ecb9c26011 /sd/source/ui/framework/configuration
parent86187c3b33583a920860e265790c2bc878e82f8f (diff)
Migrating to boost unordered containers
Diffstat (limited to 'sd/source/ui/framework/configuration')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx4
-rw-r--r--sd/source/ui/framework/configuration/ResourceFactoryManager.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
index c15abbbb7eb2..e2073b38a942 100644
--- a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
+++ b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
@@ -35,7 +35,7 @@
#include <comphelper/stl_types.hxx>
#include <vector>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
namespace css = ::com::sun::star;
@@ -127,7 +127,7 @@ private:
css::uno::Any maUserData;
};
typedef ::std::vector<ListenerDescriptor> ListenerList;
- typedef ::std::hash_map
+ typedef ::boost::unordered_map
<rtl::OUString,
ListenerList,
::comphelper::UStringHash,
diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx
index f0b5d99094a6..f388231a10a0 100644
--- a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx
+++ b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx
@@ -35,7 +35,7 @@
#include <com/sun/star/util/XURLTransformer.hpp>
#include <osl/mutex.hxx>
#include <comphelper/stl_types.hxx>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
namespace css = ::com::sun::star;
@@ -94,7 +94,7 @@ public:
private:
::osl::Mutex maMutex;
- typedef ::std::hash_map<
+ typedef ::boost::unordered_map<
::rtl::OUString,
css::uno::Reference<css::drawing::framework::XResourceFactory>,
::comphelper::UStringHash,