summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-23 11:50:08 +0000
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2017-12-18 01:08:11 -0500
commite3225840c451db4635d08c4949219805f7414c67 (patch)
treed3e5d65341683296b121ac59400b79f580afcbbc
parent163eecd34bed31e07f284b0a37b3dcb4aa5a5458 (diff)
GetGlyphData is only used by GetGlyphMetric so can be private
Change-Id: I744a43c461a2ed1e404187afeaf25b6265d2570a Reviewed-on: https://gerrit.libreoffice.org/31109 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit 9f412fa751df401a1e0d1da842eefb390b7e5ff7) (cherry picked from commit 4d91536532c18c066c24097b6db9fddc12da21a9)
-rw-r--r--vcl/inc/unx/glyphcache.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/unx/glyphcache.hxx b/vcl/inc/unx/glyphcache.hxx
index 8de5595b0eea..ea0b283f68cc 100644
--- a/vcl/inc/unx/glyphcache.hxx
+++ b/vcl/inc/unx/glyphcache.hxx
@@ -169,7 +169,6 @@ public:
const FontCharMapRef GetFontCharMap() const;
bool GetFontCapabilities(vcl::FontCapabilities &) const;
- GlyphData& GetGlyphData( sal_GlyphId );
const GlyphMetric& GetGlyphMetric( sal_GlyphId aGlyphId )
{ return GetGlyphData( aGlyphId ).GetMetric(); }
@@ -203,6 +202,7 @@ private:
void ApplyGlyphTransform( int nGlyphFlags, FT_GlyphRec_* ) const;
void ApplyGSUB( const FontSelectPattern& );
+ GlyphData& GetGlyphData( sal_GlyphId );
ServerFontLayoutEngine* GetLayoutEngine();