diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 11:03:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 13:41:17 +0200 |
commit | b4c890cb65745d05f92e451bb675fc0b2c5e31dc (patch) | |
tree | e8e772bb3e7f124f6602c43289be117df662d7ea /shell/source | |
parent | 49b338b76020682328acbb76cacf82b7699d8891 (diff) |
loplugin:finalclasses in sfx2..svl
Change-Id: I71b78135b3d0259657438c4401340bb35ab5c6e0
Reviewed-on: https://gerrit.libreoffice.org/43742
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/backends/localebe/localebackend.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/source/backends/localebe/localebackend.hxx b/shell/source/backends/localebe/localebackend.hxx index e9bfcd3ad04c..4fd0e75b593b 100644 --- a/shell/source/backends/localebe/localebackend.hxx +++ b/shell/source/backends/localebe/localebackend.hxx @@ -32,9 +32,10 @@ namespace uno = css::uno ; namespace lang = css::lang ; -class LocaleBackend : public ::cppu::WeakImplHelper < +class LocaleBackend final : public ::cppu::WeakImplHelper < css::beans::XPropertySet, - lang::XServiceInfo > { + lang::XServiceInfo > +{ public: @@ -94,7 +95,7 @@ class LocaleBackend : public ::cppu::WeakImplHelper < css::uno::Reference< css::beans::XVetoableChangeListener > const &) override {} - protected: + private: /** Service constructor from a service factory. @@ -105,7 +106,6 @@ class LocaleBackend : public ::cppu::WeakImplHelper < /** Destructor */ virtual ~LocaleBackend() override ; - private: // Returns the user locale static css::beans::Optional<css::uno::Any> getLocale(); |