vcl/source/gdi/pdfwriter_impl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit b8186703cb43d2b57460cb23a7a4e3f989e95426 Author: Herbert Dürr <[email protected]> Date: Wed Oct 15 09:03:39 2014 +0000 #i63015# always default to WinAnsiEncoding for non-symbol PDF-Type1 export Suggested-By: [email protected] Reviewed-By: [email protected] 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 ) {
_______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
