diff options
Diffstat (limited to 'vcl/inc/sft.hxx')
-rw-r--r-- | vcl/inc/sft.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/sft.hxx b/vcl/inc/sft.hxx index 4814c0e87245..29f282a04ec4 100644 --- a/vcl/inc/sft.hxx +++ b/vcl/inc/sft.hxx @@ -171,7 +171,7 @@ namespace vcl int typoLineGap = 0; /**< OS/2 portable typographic line gap */ int winAscent = 0; /**< ascender metric for Windows */ int winDescent = 0; /**< descender metric for Windows */ - bool symbolEncoded = false; /**< true: MS symbol encoded */ + bool microsoftSymbolEncoded = false; /**< true: MS symbol encoded */ sal_uInt8 panose[10] = {}; /**< PANOSE classification number */ sal_uInt32 typeFlags = 0; /**< type flags (copyright bits) */ sal_uInt16 fsSelection = 0; /**< OS/2 fsSelection */ @@ -707,7 +707,7 @@ class VCL_DLLPUBLIC AbstractTrueTypeFont sal_uInt32 m_nUnitsPerEm; std::vector<sal_uInt32> m_aGlyphOffsets; FontCharMapRef m_xCharMap; - bool m_bIsSymbolFont; + bool m_bMicrosoftSymbolEncoded; protected: SFErrCodes indexGlyphData(); @@ -724,7 +724,7 @@ public: sal_uInt32 horzMetricCount() const { return m_nHorzMetrics; } sal_uInt32 vertMetricCount() const { return m_nVertMetrics; } sal_uInt32 unitsPerEm() const { return m_nUnitsPerEm; } - bool IsSymbolFont() const { return m_bIsSymbolFont; } + bool IsMicrosoftSymbolEncoded() const { return m_bMicrosoftSymbolEncoded; } virtual bool hasTable(sal_uInt32 ord) const = 0; virtual const sal_uInt8* table(sal_uInt32 ord, sal_uInt32& size) const = 0; |