summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorKhaled Hosny <khaled@aliftype.com>2022-11-06 00:07:15 +0200
committerخالد حسني <khaled@aliftype.com>2022-11-06 16:53:08 +0100
commit35eaff1ad0490b0a1133a594041a6726e5844bd4 (patch)
tree8914c20148882ddb28c2a91f3bbc10800f27f20f /vcl/inc
parent3792b1b7708b6e28107fc29d772a806b6f4a2fad (diff)
vcl: cleanup CoreTextFontFace() a bit
Change-Id: Idcef772802636efab7e7b92415a6d31fec0ba979 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142348 Tested-by: Jenkins Reviewed-by: خالد حسني <khaled@aliftype.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/quartz/salgdi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index f3bab610f08b..121aef3cf59a 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -58,11 +58,11 @@ class FontAttributes;
class XorEmulation;
// CoreText-specific physically available font face
-class CoreTextFontFace : public vcl::font::PhysicalFontFace
+class CoreTextFontFace final : public vcl::font::PhysicalFontFace
{
public:
CoreTextFontFace( const FontAttributes&, CTFontDescriptorRef xRef );
- virtual ~CoreTextFontFace() override;
+ ~CoreTextFontFace() override;
sal_IntPtr GetFontId() const override;
@@ -70,7 +70,7 @@ public:
rtl::Reference<LogicalFontInstance> CreateFontInstance(const vcl::font::FontSelectPattern&) const override;
- virtual hb_blob_t* GetHbTable(hb_tag_t nTag) const override;
+ hb_blob_t* GetHbTable(hb_tag_t nTag) const override;
std::vector<hb_variation_t> GetVariations() const override;