diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-08-27 11:11:35 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-08-27 11:11:35 +0000 |
commit | 271f9413d4ee429c50e074b38dde604d1675eadd (patch) | |
tree | 7f633f243e85ba8474aab8d2e2f6119a83e7753f | |
parent | 30576660e295001ec8875cf5c9f2a1aa69addd0c (diff) |
INTEGRATION: CWS vcl93 (1.55.118); FILE MERGED
2008/08/19 15:17:36 hdu 1.55.118.1: #i92648# fix PDF export of vertically substituted glyphs
-rw-r--r-- | vcl/source/gdi/pdfwriter_impl.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx index 03a523452cb4..b14b19c13712 100644 --- a/vcl/source/gdi/pdfwriter_impl.hxx +++ b/vcl/source/gdi/pdfwriter_impl.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: pdfwriter_impl.hxx,v $ - * $Revision: 1.55 $ + * $Revision: 1.56 $ * * This file is part of OpenOffice.org. * @@ -292,15 +292,13 @@ public: sal_Int32 m_nFontID; sal_uInt8 m_nSubsetGlyphID; }; - typedef std::map< long, Glyph > FontMapping; - + typedef std::map< sal_GlyphId, Glyph > FontMapping; struct FontSubset { FontEmitList m_aSubsets; FontMapping m_aMapping; }; typedef std::map< const ImplFontData*, FontSubset > FontSubsetData; - struct EmbedCode { sal_Ucs m_aUnicode; |