summaryrefslogtreecommitdiffstats
path: root/sdext/source/pdfimport/test
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/test')
-rw-r--r--sdext/source/pdfimport/test/pdfunzip.cxx4
-rw-r--r--sdext/source/pdfimport/test/tests.cxx6
2 files changed, 5 insertions, 5 deletions
diff --git a/sdext/source/pdfimport/test/pdfunzip.cxx b/sdext/source/pdfimport/test/pdfunzip.cxx
index 7ea3aaadce81..f86ae2b2b373 100644
--- a/sdext/source/pdfimport/test/pdfunzip.cxx
+++ b/sdext/source/pdfimport/test/pdfunzip.cxx
@@ -296,7 +296,7 @@ int write_addStreams( const char* pInFile, const char* pOutFile, PDFFile* pPDFFi
if( pTrailer && pTrailer->m_pDict )
{
// search for AdditionalStreams entry
- boost::unordered_map<OString,PDFEntry*,OStringHash>::iterator add_stream;
+ std::unordered_map<OString,PDFEntry*,OStringHash>::iterator add_stream;
add_stream = pTrailer->m_pDict->m_aMap.find( "AdditionalStreams" );
if( add_stream != pTrailer->m_pDict->m_aMap.end() )
{
@@ -323,7 +323,7 @@ int write_fonts( const char* i_pInFile, const char* i_pOutFile, PDFFile* i_pPDFF
if( ! pDict )
continue;
- boost::unordered_map<OString,PDFEntry*,OStringHash>::iterator map_it =
+ std::unordered_map<OString,PDFEntry*,OStringHash>::iterator map_it =
pDict->m_aMap.find( "Type" );
if( map_it == pDict->m_aMap.end() )
continue;
diff --git a/sdext/source/pdfimport/test/tests.cxx b/sdext/source/pdfimport/test/tests.cxx
index 101757eb3506..8388377f8e7f 100644
--- a/sdext/source/pdfimport/test/tests.cxx
+++ b/sdext/source/pdfimport/test/tests.cxx
@@ -49,8 +49,8 @@
#include <basegfx/polygon/b2dpolypolygontools.hxx>
#include <basegfx/polygon/b2dpolygonclipper.hxx>
+#include <unordered_map>
#include <vector>
-#include <boost/unordered_map.hpp>
#include <cassert>
#include <rtl/ustring.hxx>
@@ -433,8 +433,8 @@ namespace
{
}
- typedef boost::unordered_map<sal_Int32,FontAttributes> IdToFontMap;
- typedef boost::unordered_map<FontAttributes,sal_Int32,FontAttrHash> FontToIdMap;
+ typedef std::unordered_map<sal_Int32,FontAttributes> IdToFontMap;
+ typedef std::unordered_map<FontAttributes,sal_Int32,FontAttrHash> FontToIdMap;
typedef std::vector<GraphicsContext> GraphicsContextStack;