summaryrefslogtreecommitdiff
path: root/vcl/inc/quartz/salgdi.h
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-04 20:20:21 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-04 20:20:26 +0000
commit547b472d5b81ef7f22c32b089bd9f42f721c1cbf (patch)
treeea29806dcea876d2f7a5ae170a1424e3818e74ac /vcl/inc/quartz/salgdi.h
parent42a4de0941a6a19c52384e3a5897134dcfebe3f8 (diff)
vcl/osx boost::unordered_map->std::unordered_map
Change-Id: I00dabf3307734e319a8187df111e1065ea383524
Diffstat (limited to 'vcl/inc/quartz/salgdi.h')
-rw-r--r--vcl/inc/quartz/salgdi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index 3abfdb61b9cc..87c35c1fa7da 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -43,7 +43,7 @@
#include "salgdi.hxx"
#include "quartz/salgdicommon.hxx"
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
class AquaSalFrame;
class ImplDevFontAttributes;
@@ -133,7 +133,7 @@ private:
CTFontCollectionRef mpCTFontCollection;
CFArrayRef mpCTFontArray;
- typedef boost::unordered_map<sal_IntPtr,CoreTextFontData*> CTFontContainer;
+ typedef std::unordered_map<sal_IntPtr,CoreTextFontData*> CTFontContainer;
CTFontContainer maFontContainer;
};