summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 12:40:59 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 12:47:04 +1100
commit0bae3db88548dfa6f9682b31508c4709069e83b2 (patch)
tree6dbad9f90d96a9997985b193b040029f16b3b8ed
parentbbde245ababf33ac704df116557e4849cc520df8 (diff)
vcl: whitespace cleanup on GlyphCache class definition
Change-Id: I82b48b3bb35b1120a5d7fdaee19275c8b1f8eb72
-rw-r--r--vcl/inc/generic/glyphcache.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index 4133cd8689d8..0f4070d548fd 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;