[Libreoffice-commits] .: binfilter/bf_forms binfilter/bf_svx
Kohei Yoshida
kohei at kemper.freedesktop.org
Thu Aug 4 18:45:31 PDT 2011
binfilter/bf_forms/source/inc/InterfaceContainer.hxx | 2 +-
binfilter/bf_svx/source/inc/fmcontr.hxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 58ab16132139541b78249358bdf885539108e873
Author: Kohei Yoshida <kohei.yoshida at suse.com>
Date: Thu Aug 4 21:46:08 2011 -0400
Use rtl::OUStringHash.
diff --git a/binfilter/bf_forms/source/inc/InterfaceContainer.hxx b/binfilter/bf_forms/source/inc/InterfaceContainer.hxx
index 8976939..011501f 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 fe170ab..38583d1 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);
More information about the Libreoffice-commits
mailing list