[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/source

Herbert Dürr hdu at apache.org
Wed Oct 15 03:09:25 PDT 2014


 vcl/source/gdi/pdfwriter_impl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b8186703cb43d2b57460cb23a7a4e3f989e95426
Author: Herbert Dürr <hdu at apache.org>
Date:   Wed Oct 15 09:03:39 2014 +0000

    #i63015# always default to WinAnsiEncoding for non-symbol PDF-Type1 export
    
    Suggested-By: edv at gruene.de
    Reviewed-By: hdu at apache.org

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index dffa0cd..a0b135a 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -3693,7 +3693,7 @@ std::map< sal_Int32, sal_Int32 > PDFWriterImpl::emitEmbeddedFont( const ImplFont
                 "<</Type/Font/Subtype/Type1/BaseFont/" );
             appendName( aInfo.m_aPSName, aLine );
             aLine.append( "\n" );
-            if( !pFont->mbSymbolFlag &&  pEncoding == 0 )
+            if( !pFont->IsSymbolFont() )
                 aLine.append( "/Encoding/WinAnsiEncoding\n" );
             if( nToUnicodeStream )
             {


More information about the Libreoffice-commits mailing list