diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-01-11 13:43:13 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-01-11 15:32:18 +1100 |
commit | 9298c07733838cb0651a003b1af805044cb01e1d (patch) | |
tree | 4bc60add7f15a82b3a1563d262617c5d8d067c47 /vcl/inc | |
parent | 75ec65898a6aad4d003c125fb3e4168695344621 (diff) |
vcl: cosmetic reident of GlyphCachePeer class definition
Change-Id: If8b3e4dc04ff0ecdc358b91784c1f2b60c159498
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/generic/glyphcache.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx index c2e51e905690..5930f17fe7b7 100644 --- a/vcl/inc/generic/glyphcache.hxx +++ b/vcl/inc/generic/glyphcache.hxx @@ -322,16 +322,16 @@ public: class GlyphCachePeer { protected: - GlyphCachePeer() : mnBytesUsed(0) {} - virtual ~GlyphCachePeer() {} + GlyphCachePeer() : mnBytesUsed(0) {} + virtual ~GlyphCachePeer() {} public: - sal_Int32 GetByteCount() const { return mnBytesUsed; } - virtual void RemovingFont( ServerFont& ) {} - virtual void RemovingGlyph( GlyphData& ) {} + sal_Int32 GetByteCount() const { return mnBytesUsed; } + virtual void RemovingFont( ServerFont& ) {} + virtual void RemovingGlyph( GlyphData& ) {} protected: - sal_Int32 mnBytesUsed; + sal_Int32 mnBytesUsed; }; class VCL_DLLPUBLIC RawBitmap |