summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-12-27 21:01:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-12-27 23:00:45 +0000
commit7f476fea47f06a7f8cc961dd4f6595a524346fa5 (patch)
tree52d16713e5a2a5203b041f9ec82742617bd33b1c /basctl
parentfc95782eb39cf4974ac4b3096695eeb89008937c (diff)
boost::unordered_map -> c++11 std::unordered_map
Change-Id: I28438000c2b0a8e6ce4f5640f861f572c0cb83c8
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/inc/bastypes.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/inc/bastypes.hxx b/basctl/source/inc/bastypes.hxx
index 7ccf51130579..da11bc79ff00 100644
--- a/basctl/source/inc/bastypes.hxx
+++ b/basctl/source/inc/bastypes.hxx
@@ -26,7 +26,7 @@
#include <svtools/tabbar.hxx>
#include <vcl/toolbox.hxx>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
class SbModule;
class SfxItemSet;
@@ -287,7 +287,7 @@ public:
ItemType GetCurrentType() const { return m_eCurrentType; }
};
private:
- typedef boost::unordered_map<Key, Item, Key::Hash> Map;
+ typedef std::unordered_map<Key, Item, Key::Hash> Map;
Map m_aMap;
};