summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2013-09-18 14:29:03 +0200
committerJan Holesovsky <kendy@collabora.com>2013-09-18 14:29:33 +0200
commit73a1a54b7e2d1ed296d54af74922e291bf2607a7 (patch)
tree736446652aaa81f8da4951e7a361b7ebe81c33fe
parent7ef89c96cc27aee96ceb947c7b676d56b55cd7b5 (diff)
Use boost::unordered_set instead of std::unordered_set.
Change-Id: Ia4135d7a944aaffc97c78ae0ca73090ee4bdef44
-rw-r--r--sw/source/filter/ww8/wrtw8sty.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx
index 2ca0b04bba99..67ff6cc8ca28 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -20,9 +20,9 @@
#include <algorithm>
#include <functional>
-#include <unordered_set>
#include <boost/scoped_array.hpp>
+#include <boost/unordered_set.hpp>
#include <com/sun/star/i18n/ScriptType.hpp>
#include <rtl/tencinfo.h>
@@ -297,7 +297,7 @@ void MSWordStyles::BuildStylesTable()
void MSWordStyles::BuildStyleIds()
{
- std::unordered_set<OString, OStringHash> aUsed;
+ boost::unordered_set<OString, OStringHash> aUsed;
m_aStyleIds.push_back("Normal");
aUsed.insert("normal");