summaryrefslogtreecommitdiff
path: root/extensions/source/ole/oleobjw.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-05 18:49:26 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 01:00:47 +0100
commit3ca828cc9048205d0a93a1e03ba22ea3ea8ca4f1 (patch)
treeb9940ac677d5aa24d4506529d9e0bdddd18561c9 /extensions/source/ole/oleobjw.hxx
parent014d3582652f4014fcf65cc3023962c7f74bf75e (diff)
move components to boost unordered containers
Diffstat (limited to 'extensions/source/ole/oleobjw.hxx')
-rw-r--r--extensions/source/ole/oleobjw.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/ole/oleobjw.hxx b/extensions/source/ole/oleobjw.hxx
index 0f926695e..4bba578ce 100644
--- a/extensions/source/ole/oleobjw.hxx
+++ b/extensions/source/ole/oleobjw.hxx
@@ -43,7 +43,7 @@
#endif
#include <atlbase.h>
#include <vector>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#include <tools/postsys.h>
#ifdef _MSC_VER
@@ -76,9 +76,9 @@ namespace ole_adapter
-typedef hash_map<OUString, pair<DISPID, unsigned short>, hashOUString_Impl, equalOUString_Impl> DispIdMap;
+typedef boost::unordered_map<OUString, pair<DISPID, unsigned short>, hashOUString_Impl, equalOUString_Impl> DispIdMap;
-typedef hash_multimap<OUString, unsigned int, hashOUString_Impl, equalOUString_Impl> TLBFuncIndexMap;
+typedef boost::unordered_multimap<OUString, unsigned int, hashOUString_Impl, equalOUString_Impl> 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.