diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-08 21:04:23 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-08 23:43:50 +0000 |
commit | ad241f51fe6ae4f5dc37050cf3bea65fc4163084 (patch) | |
tree | 7cca06f686ac7254c63e6c12c5bc31be445ff02c /vcl/inc/fontselect.hxx | |
parent | 47bac0de19fc4ca2c9d469b64fcbffe15bc4a0a3 (diff) |
vcl: change ImplFontEntry to LogicalFontInstance
There is a TODO in the code that suggests to do this, when I looked at the
collaboration diagram on Doxygen things made a LOT more sense.
Change-Id: If335498bb70872ffa5738cc5c17660faec84c35e
Reviewed-on: https://gerrit.libreoffice.org/21257
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/inc/fontselect.hxx')
-rw-r--r-- | vcl/inc/fontselect.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/fontselect.hxx b/vcl/inc/fontselect.hxx index 595f3c9018fa..0a23105f66a0 100644 --- a/vcl/inc/fontselect.hxx +++ b/vcl/inc/fontselect.hxx @@ -26,7 +26,7 @@ #include <unordered_map> class PhysicalFontFace; -class ImplFontEntry; +class LogicalFontInstance; class ImplFontCache; namespace vcl { class Font; } class ConvertChar; @@ -78,7 +78,7 @@ public: public: // TODO: change to private const PhysicalFontFace* mpFontData; // a matching PhysicalFontFace object - ImplFontEntry* mpFontEntry; // pointer to the resulting FontCache entry + LogicalFontInstance* mpFontInstance; // pointer to the resulting FontCache entry void copyAttributes(const FontSelectPatternAttributes &rAttributes); }; |