[Libreoffice-commits] .: sdext/source
Caolán McNamara
caolan at kemper.freedesktop.org
Wed Mar 23 13:03:16 PDT 2011
sdext/source/pdfimport/pdfparse/pdfentries.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 54567b9622b4790700b52dba868945dcc9f9f086
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Mar 23 20:02:01 2011 +0000
hash_map -> unordered_map
diff --git a/sdext/source/pdfimport/pdfparse/pdfentries.cxx b/sdext/source/pdfimport/pdfparse/pdfentries.cxx
index 4665c51..6b11fc7 100644
--- a/sdext/source/pdfimport/pdfparse/pdfentries.cxx
+++ b/sdext/source/pdfimport/pdfparse/pdfentries.cxx
@@ -864,7 +864,7 @@ bool PDFObject::emit( EmitContext& rWriteContext ) const
if( bDeflate && rWriteContext.m_bDeflate )
{
// delete flatedecode filter
- std::hash_map<OString,PDFEntry*,OStringHash>::const_iterator it =
+ boost::unordered_map<OString,PDFEntry*,OStringHash>::const_iterator it =
pClone->m_pStream->m_pDict->m_aMap.find( "Filter" );
if( it != pClone->m_pStream->m_pDict->m_aMap.end() )
{
More information about the Libreoffice-commits
mailing list