summaryrefslogtreecommitdiff
path: root/vcl/quartz
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 21:04:23 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-01-08 23:43:50 +0000
commitad241f51fe6ae4f5dc37050cf3bea65fc4163084 (patch)
tree7cca06f686ac7254c63e6c12c5bc31be445ff02c /vcl/quartz
parent47bac0de19fc4ca2c9d469b64fcbffe15bc4a0a3 (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/quartz')
-rw-r--r--vcl/quartz/ctfonts.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx
index d516d76ea7a9..4d847ba8f9af 100644
--- a/vcl/quartz/ctfonts.cxx
+++ b/vcl/quartz/ctfonts.cxx
@@ -31,7 +31,7 @@
#include "osx/saldata.hxx"
#include "osx/salinst.h"
#endif
-#include "fontentry.hxx"
+#include "fontinstance.hxx"
#include "fontattributes.hxx"
#include "PhysicalFontCollection.hxx"
#include "quartz/salgdi.h"
@@ -240,9 +240,9 @@ PhysicalFontFace* CoreTextFontData::Clone() const
return new CoreTextFontData( *this);
}
-ImplFontEntry* CoreTextFontData::CreateFontInstance( /*const*/ FontSelectPattern& rFSD ) const
+LogicalFontInstance* CoreTextFontData::CreateFontInstance( /*const*/ FontSelectPattern& rFSD ) const
{
- return new ImplFontEntry( rFSD);
+ return new LogicalFontInstance( rFSD);
}
int CoreTextFontData::GetFontTable( const char pTagName[5], unsigned char* pResultBuf ) const