[Libreoffice-commits] core.git: extensions/source

Stephan Bergmann sbergman at redhat.com
Thu Sep 18 06:28:09 PDT 2014


 extensions/source/ole/oleobjw.hxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 04edcd8605bf21b3355ada86fe415ac4c1a0219a
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Thu Sep 18 15:27:38 2014 +0200

    Blind fix for Windows
    
    Change-Id: I1b923cba578b0acc2b9ce389c6c7d664fa00b268

diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx
index 890a534..b9e55f9 100644
--- a/extensions/source/ole/oleobjw.hxx
+++ b/extensions/source/ole/oleobjw.hxx
@@ -53,9 +53,9 @@ namespace ole_adapter
 
 
 
-typedef boost::unordered_map<OUString, pair<DISPID, unsigned short>, hashOUString_Impl, equalOUString_Impl> DispIdMap;
+typedef boost::unordered_map<OUString, pair<DISPID, unsigned short>, OUStringHash> DispIdMap;
 
-typedef boost::unordered_multimap<OUString, unsigned int, hashOUString_Impl, equalOUString_Impl> TLBFuncIndexMap;
+typedef boost::unordered_multimap<OUString, unsigned int, OUStringHash> TLBFuncIndexMap;
 
 // This class wraps an IDispatch and maps XInvocation calls to IDispatch calls on the wrapped object.
 // If m_TypeDescription is set then this class represents an UNO interface implemented in a COM component.


More information about the Libreoffice-commits mailing list