vcl/inc/generic/glyphcache.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)
New commits: commit 0bae3db88548dfa6f9682b31508c4709069e83b2 Author: Chris Sherlock <[email protected]> Date: Sun Jan 11 12:40:59 2015 +1100 vcl: whitespace cleanup on GlyphCache class definition Change-Id: I82b48b3bb35b1120a5d7fdaee19275c8b1f8eb72 diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx index 4133cd8..0f4070d 100644 --- a/vcl/inc/generic/glyphcache.hxx +++ b/vcl/inc/generic/glyphcache.hxx @@ -58,7 +58,7 @@ public: explicit GlyphCache( GlyphCachePeer& ); ~GlyphCache(); - static GlyphCache& GetInstance(); + static GlyphCache& GetInstance(); void AddFontFile( const OString& rNormalizedName, int nFaceNum, sal_IntPtr nFontId, @@ -89,9 +89,10 @@ private: struct IFSD_Equal{ bool operator()( const FontSelectPattern&, const FontSelectPattern& ) const; }; struct IFSD_Hash{ size_t operator()( const FontSelectPattern& ) const; }; typedef std::unordered_map<FontSelectPattern,ServerFont*,IFSD_Hash,IFSD_Equal > FontList; + FontList maFontList; - sal_uLong mnMaxSize; // max overall cache size in bytes - mutable sal_uLong mnBytesUsed; + sal_uLong mnMaxSize; // max overall cache size in bytes + mutable sal_uLong mnBytesUsed; mutable long mnLruIndex; mutable int mnGlyphCount; ServerFont* mpCurrentGCFont; _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
