diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:35:57 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:35:57 -0400 |
commit | 95e91860dec722f852dbb4ca4ba9cda2c7e20721 (patch) | |
tree | 20f9ab56b91e09b1ca3370744ed9f849c3e3662d /sd/source/ui/framework | |
parent | 061ecea4152845422123ff66f1829c31f29466d1 (diff) |
Use rtl::OUStringHash.
Diffstat (limited to 'sd/source/ui/framework')
4 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx index ed5d80db8..e1facd5ee 100644 --- a/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx +++ b/sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx @@ -130,7 +130,7 @@ private: typedef ::boost::unordered_map <rtl::OUString, ListenerList, - ::comphelper::UStringHash, + ::rtl::OUStringHash, ::comphelper::UStringEqual> ListenerMap; ListenerMap maListenerMap; diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx index fda86ae5f..208b1e0fd 100644 --- a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx +++ b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx @@ -97,7 +97,7 @@ private: typedef ::boost::unordered_map< ::rtl::OUString, css::uno::Reference<css::drawing::framework::XResourceFactory>, - ::comphelper::UStringHash, + ::rtl::OUStringHash, ::comphelper::UStringEqual> FactoryMap; FactoryMap maFactoryMap; diff --git a/sd/source/ui/framework/module/ModuleController.cxx b/sd/source/ui/framework/module/ModuleController.cxx index d153346e5..635c43d89 100644 --- a/sd/source/ui/framework/module/ModuleController.cxx +++ b/sd/source/ui/framework/module/ModuleController.cxx @@ -59,7 +59,7 @@ class ModuleController::ResourceToFactoryMap : public ::boost::unordered_map< rtl::OUString, rtl::OUString, - ::comphelper::UStringHash, + ::rtl::OUStringHash, ::comphelper::UStringEqual> { public: @@ -71,7 +71,7 @@ class ModuleController::LoadedFactoryContainer : public ::boost::unordered_map< rtl::OUString, WeakReference<XInterface>, - ::comphelper::UStringHash, + ::rtl::OUStringHash, ::comphelper::UStringEqual> { public: diff --git a/sd/source/ui/framework/tools/FrameworkHelper.cxx b/sd/source/ui/framework/tools/FrameworkHelper.cxx index e9574bd2e..369f31d12 100644 --- a/sd/source/ui/framework/tools/FrameworkHelper.cxx +++ b/sd/source/ui/framework/tools/FrameworkHelper.cxx @@ -305,7 +305,7 @@ class FrameworkHelper::ViewURLMap : public ::boost::unordered_map< rtl::OUString, ViewShell::ShellType, - ::comphelper::UStringHash, + ::rtl::OUStringHash, ::comphelper::UStringEqual> { public: |