summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/tools/IconCache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/tools/IconCache.cxx')
-rw-r--r--sd/source/ui/tools/IconCache.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/tools/IconCache.cxx b/sd/source/ui/tools/IconCache.cxx
index 33858b82955b..ae895876c912 100644
--- a/sd/source/ui/tools/IconCache.cxx
+++ b/sd/source/ui/tools/IconCache.cxx
@@ -20,9 +20,9 @@
#include "tools/IconCache.hxx"
#include "sdresid.hxx"
-#include <boost/unordered_map.hpp>
#include <osl/doublecheckedlocking.h>
#include <osl/getglobalmutex.hxx>
+#include <unordered_map>
namespace sd {
@@ -39,7 +39,7 @@ private:
*/
static IconCache* mpInstance;
- typedef ::boost::unordered_map<sal_uInt16,Image> ImageContainer;
+ typedef std::unordered_map<sal_uInt16,Image> ImageContainer;
ImageContainer maContainer;
Image GetIcon (sal_uInt16 nResourceId);