diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 14:28:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 18:58:17 +0200 |
commit | afea504ad44f017f7020ed6dcc0191f7756acc93 (patch) | |
tree | 82ee390592c54f5167c53133d14edc50fa90719f /svtools | |
parent | fbb9a98a78a349aef7b69d29a7534fd35ff1aa53 (diff) |
loplugin:finalclasses
Change-Id: I88831f290e1923db6fb5a733746bfa3bc7fbc7e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122148
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/inc/mousefunction.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/inc/mousefunction.hxx b/svtools/inc/mousefunction.hxx index 979a2b6c463f..00313b0f4497 100644 --- a/svtools/inc/mousefunction.hxx +++ b/svtools/inc/mousefunction.hxx @@ -61,7 +61,7 @@ protected: //= ColumnResize -class ColumnResize : public MouseFunction +class ColumnResize final : public MouseFunction { public: ColumnResize() @@ -84,7 +84,7 @@ private: //= RowSelection -class RowSelection : public MouseFunction +class RowSelection final : public MouseFunction { public: RowSelection() @@ -107,7 +107,7 @@ private: //= ColumnSortHandler -class ColumnSortHandler : public MouseFunction +class ColumnSortHandler final : public MouseFunction { public: ColumnSortHandler() |