diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-18 15:27:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-18 15:27:38 +0200 |
commit | 04edcd8605bf21b3355ada86fe415ac4c1a0219a (patch) | |
tree | f5295ef9170515fe1a20f104c6b3e4554c43e335 /extensions | |
parent | 39b81563b218fd6d114275ecee95947d6b69c09d (diff) |
Blind fix for Windows
Change-Id: I1b923cba578b0acc2b9ce389c6c7d664fa00b268
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/oleobjw.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx index 890a534df9d3..b9e55f974b78 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. |