summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-12-30 09:20:27 +0100
committerTomaž Vajngerl <quikee@gmail.com>2019-12-30 12:00:49 +0100
commit6c6b3d4a7cf62ea01bf1bc4583b05b67f2b81ce2 (patch)
tree075382cd7d8c8526c4a674854d7193ab792c729e /vcl
parent06d8d773f07fa7fba55f3ec5aa2715c9f857ab02 (diff)
pdf: remove FontSubsetData typedef
Change-Id: I5c9bdd12979e43da277796fd1867d46d7e5a27b2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85986 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.hxx b/vcl/source/gdi/pdfwriter_impl.hxx
index 7ccd43119151..8cc7c714f338 100644
--- a/vcl/source/gdi/pdfwriter_impl.hxx
+++ b/vcl/source/gdi/pdfwriter_impl.hxx
@@ -305,7 +305,6 @@ public:
std::vector< FontEmit > m_aSubsets;
std::map<sal_GlyphId, Glyph> m_aMapping;
};
- typedef std::map< const PhysicalFontFace*, FontSubset > FontSubsetData;
struct EmbedFont
{
sal_Int32 m_nNormalFontID;
@@ -643,7 +642,7 @@ private:
std::vector< TilingEmit > m_aTilings;
std::list< TransparencyEmit > m_aTransparentObjects;
/* contains all font subsets in use */
- FontSubsetData m_aSubsets;
+ std::map<const PhysicalFontFace*, FontSubset> m_aSubsets;
FontEmbedData m_aSystemFonts;
sal_Int32 m_nNextFID;
PDFFontCache m_aFontCache;