summaryrefslogtreecommitdiff
path: root/svl/source/items/itemprop.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/items/itemprop.cxx')
-rw-r--r--svl/source/items/itemprop.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svl/source/items/itemprop.cxx b/svl/source/items/itemprop.cxx
index 53f948455687..7428925c9525 100644
--- a/svl/source/items/itemprop.cxx
+++ b/svl/source/items/itemprop.cxx
@@ -23,7 +23,7 @@
#include <svl/itemset.hxx>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include <boost/scoped_ptr.hpp>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
/*
* UNO III Implementation
*/
@@ -40,10 +40,10 @@ struct equalOUString
}
};
-typedef ::boost::unordered_map< OUString,
- SfxItemPropertySimpleEntry,
- OUStringHash,
- equalOUString > SfxItemPropertyHashMap_t;
+typedef std::unordered_map< OUString,
+ SfxItemPropertySimpleEntry,
+ OUStringHash,
+ equalOUString > SfxItemPropertyHashMap_t;
class SfxItemPropertyMap_Impl : public SfxItemPropertyHashMap_t
{