diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-29 16:32:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-30 07:32:40 +0100 |
commit | fa79e8df02a082cd4967bf7a1c61aa925dc7b101 (patch) | |
tree | 925752fb10602968d15f4057374ee8f305a7fbbc /include/svx/xtable.hxx | |
parent | f90d0de7b20b52c1910eb0ceac9d31f38a648613 (diff) |
loplugin:finalclasses svx
Change-Id: If55e51b8627083ba3ece2b3270adb47668b25e9d
Reviewed-on: https://gerrit.libreoffice.org/81705
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/xtable.hxx')
-rw-r--r-- | include/svx/xtable.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/xtable.hxx b/include/svx/xtable.hxx index 6d51d39782b3..6b96c88755aa 100644 --- a/include/svx/xtable.hxx +++ b/include/svx/xtable.hxx @@ -39,7 +39,7 @@ #include <limits> #include <memory> -class SVX_DLLPUBLIC XColorEntry : public XPropertyEntry +class SVX_DLLPUBLIC XColorEntry final : public XPropertyEntry { private: Color aColor; @@ -53,7 +53,7 @@ public: } }; -class SVX_DLLPUBLIC XLineEndEntry : public XPropertyEntry +class SVX_DLLPUBLIC XLineEndEntry final : public XPropertyEntry { private: basegfx::B2DPolyPolygon const aB2DPolyPolygon; @@ -68,7 +68,7 @@ public: } }; -class SVX_DLLPUBLIC XDashEntry : public XPropertyEntry +class SVX_DLLPUBLIC XDashEntry final : public XPropertyEntry { private: XDash const aDash; @@ -83,7 +83,7 @@ public: } }; -class SVX_DLLPUBLIC XHatchEntry : public XPropertyEntry +class SVX_DLLPUBLIC XHatchEntry final : public XPropertyEntry { private: XHatch const aHatch; @@ -98,7 +98,7 @@ public: } }; -class SVX_DLLPUBLIC XGradientEntry : public XPropertyEntry +class SVX_DLLPUBLIC XGradientEntry final : public XPropertyEntry { private: XGradient const aGradient; @@ -113,7 +113,7 @@ public: } }; -class SVX_DLLPUBLIC XBitmapEntry : public XPropertyEntry +class SVX_DLLPUBLIC XBitmapEntry final : public XPropertyEntry { private: GraphicObject const maGraphicObject; |