diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:46:08 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2011-08-04 21:46:08 -0400 |
commit | 58ab16132139541b78249358bdf885539108e873 (patch) | |
tree | 3057cf6c35c9fb2ac02c116bc9be09e1c1a61321 | |
parent | 1cbdc406fd9e0bf7a25c188837916ed4fe671a14 (diff) |
Use rtl::OUStringHash.
-rw-r--r-- | binfilter/bf_forms/source/inc/InterfaceContainer.hxx | 2 | ||||
-rw-r--r-- | binfilter/bf_svx/source/inc/fmcontr.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/binfilter/bf_forms/source/inc/InterfaceContainer.hxx b/binfilter/bf_forms/source/inc/InterfaceContainer.hxx index 8976939e3..011501fa6 100644 --- a/binfilter/bf_forms/source/inc/InterfaceContainer.hxx +++ b/binfilter/bf_forms/source/inc/InterfaceContainer.hxx @@ -75,7 +75,7 @@ namespace frm }; typedef ::std::vector<InterfaceRef> OInterfaceArray; -typedef ::boost::unordered_multimap< ::rtl::OUString, InterfaceRef, ::comphelper::UStringHash, ::comphelper::UStringEqual> OInterfaceMap; +typedef ::boost::unordered_multimap< ::rtl::OUString, InterfaceRef, ::rtl::OUStringHash, ::comphelper::UStringEqual> OInterfaceMap; //================================================================== // OInterfaceContainer diff --git a/binfilter/bf_svx/source/inc/fmcontr.hxx b/binfilter/bf_svx/source/inc/fmcontr.hxx index fe170abf8..38583d1f1 100644 --- a/binfilter/bf_svx/source/inc/fmcontr.hxx +++ b/binfilter/bf_svx/source/inc/fmcontr.hxx @@ -45,7 +45,7 @@ #include <com/sun/star/lang/EventObject.hpp> namespace binfilter { -typedef ::boost::unordered_multimap< ::rtl::OUString, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > , ::comphelper::UStringHash, ::comphelper::UStringEqual> OInterfaceMap; +typedef ::boost::unordered_multimap< ::rtl::OUString, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > , ::rtl::OUStringHash, ::comphelper::UStringEqual> OInterfaceMap; DECLARE_STL_VECTOR(::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > > ,InterfaceArray); |