summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 15:00:32 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 15:00:32 +0100
commite0975cb88167fc91c810688835b57544beddd6d6 (patch)
treec0f04fe0086a6e8b95b4e3f2be90372a2e472c08 /svx/source
parent2e0277366b9b9e891f944ec0b41a7f83fa0e2a46 (diff)
std::hash -> boost::hash
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx b/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx
index 38099165e5fa..0667dff6d29a 100644
--- a/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeTypeNames.cxx
@@ -39,7 +39,7 @@ struct TCheck
return strcmp( s1, s2 ) == 0;
}
};
-typedef boost::unordered_map< const char*, MSO_SPT, std::hash<const char*>, TCheck> TypeNameHashMap;
+typedef boost::unordered_map< const char*, MSO_SPT, boost::hash<const char*>, TCheck> TypeNameHashMap;
static TypeNameHashMap* pHashMap = NULL;
static ::osl::Mutex& getHashMapMutex()
{