summaryrefslogtreecommitdiff
path: root/sw/inc/SwStyleNameMapper.hxx
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:58:27 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 00:58:27 +0100
commitef0c79d924c5715cfb9adebe9fb1c3a2503d7fef (patch)
tree224eab9425a8b1a504451bdbabcdf356517c3f79 /sw/inc/SwStyleNameMapper.hxx
parent848b1a05c5c41b5e7ff19c984f60c297a8143990 (diff)
port repository writer to boost unordered containers
Diffstat (limited to 'sw/inc/SwStyleNameMapper.hxx')
-rw-r--r--sw/inc/SwStyleNameMapper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/SwStyleNameMapper.hxx b/sw/inc/SwStyleNameMapper.hxx
index 1269c2efd1c4..4d334d559383 100644
--- a/sw/inc/SwStyleNameMapper.hxx
+++ b/sw/inc/SwStyleNameMapper.hxx
@@ -34,7 +34,7 @@
#include "swdllapi.h"
#ifndef INCLUDED_HASH_MAP
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#define INCLUDED_HASH_MAP
#endif
#include <stringhash.hxx>
@@ -88,7 +88,7 @@ class String;
struct SwTableEntry;
-typedef ::std::hash_map < const String*, sal_uInt16, StringHash, StringEq > NameToIdHash;
+typedef ::boost::unordered_map < const String*, sal_uInt16, StringHash, StringEq > NameToIdHash;
class SwStyleNameMapper
{