diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-25 09:32:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-06-26 13:14:18 +0200 |
commit | 66fec11a62b692cc00cf0c1332d841906abfaea8 (patch) | |
tree | 01719d04bd1dc0f158e920c2305012ef3183c2be /framework | |
parent | 922e2610a4745c6e33d9e8e808131922a3ea0dc4 (diff) |
loplugin:finalclasses in framework
Change-Id: I64e7b65337d283567bb6030a626303de477346cf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117891
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/classes/protocolhandlercache.hxx | 2 | ||||
-rw-r--r-- | framework/inc/uielement/statusbar.hxx | 2 | ||||
-rw-r--r-- | framework/source/inc/dispatch/dispatchdisabler.hxx | 2 | ||||
-rw-r--r-- | framework/source/inc/dispatch/loaddispatcher.hxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/framework/inc/classes/protocolhandlercache.hxx b/framework/inc/classes/protocolhandlercache.hxx index d29ba6795248..25e315025dc3 100644 --- a/framework/inc/classes/protocolhandlercache.hxx +++ b/framework/inc/classes/protocolhandlercache.hxx @@ -125,7 +125,7 @@ class HandlerCache final @devstatus ready to use @threadsafe no */ -class HandlerCFGAccess : public ::utl::ConfigItem +class HandlerCFGAccess final : public ::utl::ConfigItem { private: HandlerCache* m_pCache; diff --git a/framework/inc/uielement/statusbar.hxx b/framework/inc/uielement/statusbar.hxx index 28e2e2b49487..6d33396dbecd 100644 --- a/framework/inc/uielement/statusbar.hxx +++ b/framework/inc/uielement/statusbar.hxx @@ -26,7 +26,7 @@ namespace framework { -class FrameworkStatusBar : public StatusBar +class FrameworkStatusBar final : public StatusBar { public: diff --git a/framework/source/inc/dispatch/dispatchdisabler.hxx b/framework/source/inc/dispatch/dispatchdisabler.hxx index 5b9be47dd1f3..662eeb5d7c2d 100644 --- a/framework/source/inc/dispatch/dispatchdisabler.hxx +++ b/framework/source/inc/dispatch/dispatchdisabler.hxx @@ -31,7 +31,7 @@ namespace framework { * of functionality included, and disabling elements remotely one * by one performs poorly. */ -class DispatchDisabler : public ::cppu::WeakImplHelper< +class DispatchDisabler final : public ::cppu::WeakImplHelper< css::lang::XInitialization, css::container::XNameContainer, css::frame::XDispatchProviderInterceptor, diff --git a/framework/source/inc/dispatch/loaddispatcher.hxx b/framework/source/inc/dispatch/loaddispatcher.hxx index 99f27d968640..ef7b9860f5e5 100644 --- a/framework/source/inc/dispatch/loaddispatcher.hxx +++ b/framework/source/inc/dispatch/loaddispatcher.hxx @@ -33,7 +33,7 @@ namespace framework{ non-visible components (by using the mechanism of ContentHandler) or visible-components (by using the mechanism of FrameLoader). */ -class LoadDispatcher : public ::cppu::WeakImplHelper< css::frame::XNotifyingDispatch, // => XDispatch => XInterface +class LoadDispatcher final : public ::cppu::WeakImplHelper< css::frame::XNotifyingDispatch, // => XDispatch => XInterface css::frame::XSynchronousDispatch > { |