diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-14 10:22:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-14 13:25:07 +0100 |
commit | 4e0a6e43f48ef2d39433bdd8af3b6fd1906e2940 (patch) | |
tree | 90678d0181541041511974489cb602cc682967ae /emfio | |
parent | 3afc718eddcd81232392d46fccc24b8ec626c8df (diff) |
loplugin:finalclasses in basic..emfio
Change-Id: I1b0df1a6cb5b8db9db09cb1d55d932459ab16d81
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86741
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/inc/mtftools.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emfio/inc/mtftools.hxx b/emfio/inc/mtftools.hxx index 784fe796efe7..490bed017147 100644 --- a/emfio/inc/mtftools.hxx +++ b/emfio/inc/mtftools.hxx @@ -314,7 +314,7 @@ namespace emfio virtual ~GDIObj() = default; // Polymorphic base class }; - struct EMFIO_DLLPUBLIC WinMtfFontStyle : GDIObj + struct EMFIO_DLLPUBLIC WinMtfFontStyle final : GDIObj { vcl::Font aFont; @@ -326,7 +326,7 @@ namespace emfio Solid, Pattern }; - struct WinMtfFillStyle : GDIObj + struct WinMtfFillStyle final : GDIObj { Color aFillColor; bool bTransparent; @@ -359,7 +359,7 @@ namespace emfio } }; - struct WinMtfLineStyle : GDIObj + struct WinMtfLineStyle final : GDIObj { Color aLineColor; LineInfo aLineInfo; |