diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-12-31 15:20:12 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2015-12-31 22:49:16 +0000 |
commit | e9598378b55cc05c95bd3f410c396bd44a74341d (patch) | |
tree | 35cd6ae2245806117a337631a6d8b0ef9406c80f /vcl/inc/quartz | |
parent | e81c4d3ea00949cb4d8c3f44e09e70b19eebb826 (diff) |
vcl: merge ImplDevFontAttributes with ImplFontAttributes
ImplFontAttributes handles device independent data, whilst
ImplDevFontAttributes handles device dependent data. However, there
is no real reason for the divide in classes, and in fact I'm not at
all a fan of using a pImpl directly - sort of defeats the purpose of
having one!
Change-Id: I2db22727e3479b14e3bc37dfad9136703bbdeb13
Reviewed-on: https://gerrit.libreoffice.org/21018
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'vcl/inc/quartz')
-rw-r--r-- | vcl/inc/quartz/salgdi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h index 51fe8492a820..557e7d65c130 100644 --- a/vcl/inc/quartz/salgdi.h +++ b/vcl/inc/quartz/salgdi.h @@ -46,7 +46,7 @@ #include <unordered_map> class AquaSalFrame; -class ImplDevFontAttributes; +class ImplFontAttributes; class CoreTextStyle; class XorEmulation; @@ -57,7 +57,7 @@ typedef std::vector<unsigned char> ByteVector; class CoreTextFontData : public PhysicalFontFace { public: - CoreTextFontData( const ImplDevFontAttributes&, sal_IntPtr nFontID ); + CoreTextFontData( const ImplFontAttributes&, sal_IntPtr nFontID ); virtual ~CoreTextFontData(); PhysicalFontFace* Clone() const override; |