summaryrefslogtreecommitdiff
path: root/sd/inc/TransitionPreset.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-05 21:40:28 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-05 21:40:28 +0100
commit8851524e49922cd64d387015cdcc9aa4fcede151 (patch)
treee722aee2cfb903653d6616ce38d1f0ecb9c26011 /sd/inc/TransitionPreset.hxx
parent86187c3b33583a920860e265790c2bc878e82f8f (diff)
Migrating to boost unordered containers
Diffstat (limited to 'sd/inc/TransitionPreset.hxx')
-rw-r--r--sd/inc/TransitionPreset.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/inc/TransitionPreset.hxx b/sd/inc/TransitionPreset.hxx
index 51d909ebe57f..56570b0161c4 100644
--- a/sd/inc/TransitionPreset.hxx
+++ b/sd/inc/TransitionPreset.hxx
@@ -35,7 +35,7 @@
#include <comphelper/stl_types.hxx>
#include <list>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
namespace com { namespace sun { namespace star {
namespace animations { class XAnimationNode; }
@@ -50,7 +50,7 @@ namespace sd {
class TransitionPreset;
typedef boost::shared_ptr< TransitionPreset > TransitionPresetPtr;
typedef std::list< TransitionPresetPtr > TransitionPresetList;
-typedef std::hash_map< rtl::OUString, rtl::OUString, comphelper::UStringHash, comphelper::UStringEqual > UStringMap;
+typedef boost::unordered_map< rtl::OUString, rtl::OUString, comphelper::UStringHash, comphelper::UStringEqual > UStringMap;
class TransitionPreset
{