[Libreoffice-commits] core.git: vcl/inc

Caolán McNamara caolanm at redhat.com
Wed Nov 23 13:19:50 UTC 2016


 vcl/inc/unx/glyphcache.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9f412fa751df401a1e0d1da842eefb390b7e5ff7
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Nov 23 11:50:08 2016 +0000

    GetGlyphData is only used by GetGlyphMetric so can be private
    
    Change-Id: I744a43c461a2ed1e404187afeaf25b6265d2570a
    Reviewed-on: https://gerrit.libreoffice.org/31109
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/inc/unx/glyphcache.hxx b/vcl/inc/unx/glyphcache.hxx
index e5852a0..1e2d57c 100644
--- a/vcl/inc/unx/glyphcache.hxx
+++ b/vcl/inc/unx/glyphcache.hxx
@@ -168,7 +168,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(); }
 
@@ -202,6 +201,7 @@ private:
 
     void                    ApplyGlyphTransform( int nGlyphFlags, FT_GlyphRec_* ) const;
     void                    ApplyGSUB( const FontSelectPattern& );
+    GlyphData&              GetGlyphData( sal_GlyphId );
 
     ServerFontLayoutEngine* GetLayoutEngine();
 


More information about the Libreoffice-commits mailing list