summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/wrapper
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 02:49:07 +0100
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-02-06 02:49:07 +0100
commita91b24db4a2f18804a26e41d06eefaf1db5e7494 (patch)
treed7e5a2ab7566dc3040f916da52b28bd1c508c3b0 /sdext/source/pdfimport/wrapper
parent6bf614b7eed66ef8b24899a3094146a3a9ff0080 (diff)
porting extensions to boost containers
Diffstat (limited to 'sdext/source/pdfimport/wrapper')
-rw-r--r--sdext/source/pdfimport/wrapper/wrapper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/wrapper/wrapper.cxx b/sdext/source/pdfimport/wrapper/wrapper.cxx
index 3d761a10d284..393012bbcf64 100644
--- a/sdext/source/pdfimport/wrapper/wrapper.cxx
+++ b/sdext/source/pdfimport/wrapper/wrapper.cxx
@@ -69,7 +69,7 @@
#include <boost/scoped_ptr.hpp>
#include <boost/scoped_array.hpp>
-#include <hash_map>
+#include <boost/unordered_map.hpp>
#include <string.h>
#ifdef WNT
#include <stdlib.h>
@@ -148,7 +148,7 @@ enum parseKey {
class Parser
{
- typedef std::hash_map< sal_Int64,
+ typedef boost::unordered_map< sal_Int64,
FontAttributes > FontMapType;
const uno::Reference<uno::XComponentContext> m_xContext;