summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 13:08:29 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2015-01-11 13:08:29 +1100
commit78964ab80c391a25a1030894e19319f1873d1154 (patch)
tree1ea209f69cc126b2b9d39a18ffb21e6e1a3392ed
parentbe62d0c892e19ddddef619688ec413bc5efde0e9 (diff)
vcl: cosmetic changes to ImplServerFontEntry definition
Change-Id: I61934fc2ebfaeaa0527f70f038e5aaae87ef730e
-rw-r--r--vcl/inc/generic/glyphcache.hxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/vcl/inc/generic/glyphcache.hxx b/vcl/inc/generic/glyphcache.hxx
index aeaaf2fd9cd1..82702dddafc5 100644
--- a/vcl/inc/generic/glyphcache.hxx
+++ b/vcl/inc/generic/glyphcache.hxx
@@ -270,16 +270,18 @@ private:
// a class for cache entries for physical font instances that are based on serverfonts
class VCL_DLLPUBLIC ImplServerFontEntry : public ImplFontEntry
{
+public:
+ ImplServerFontEntry( FontSelectPattern& );
+ virtual ~ImplServerFontEntry();
+
+ void SetServerFont(ServerFont* p);
+ void HandleFontOptions();
+
private:
- ServerFont* mpServerFont;
+ ServerFont* mpServerFont;
boost::shared_ptr<ImplFontOptions> mpFontOptions;
- bool mbGotFontOptions;
+ bool mbGotFontOptions;
-public:
- ImplServerFontEntry( FontSelectPattern& );
- virtual ~ImplServerFontEntry();
- void SetServerFont(ServerFont* p);
- void HandleFontOptions();
};
class VCL_DLLPUBLIC ServerFontLayout : public GenericSalLayout