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 /svl/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 'svl/source')
-rw-r--r-- | svl/source/numbers/supservs.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/svl/source/numbers/supservs.hxx b/svl/source/numbers/supservs.hxx index 4a00ce22f86e..919ae9d461da 100644 --- a/svl/source/numbers/supservs.hxx +++ b/svl/source/numbers/supservs.hxx @@ -32,15 +32,16 @@ * - can be initialized (css::lang::XInitialization) * with a specific language (i.e. css::lang::Locale) */ -class SvNumberFormatsSupplierServiceObject +class SvNumberFormatsSupplierServiceObject final :public SvNumberFormatsSupplierObj ,public css::lang::XInitialization ,public css::lang::XServiceInfo { -protected: SvNumberFormatter* m_pOwnFormatter; css::uno::Reference< css::uno::XComponentContext > m_xORB; + void implEnsureFormatter(); + public: explicit SvNumberFormatsSupplierServiceObject(const css::uno::Reference< css::uno::XComponentContext >& _rxORB); virtual ~SvNumberFormatsSupplierServiceObject() override; @@ -70,9 +71,6 @@ public: // XUnoTunnler virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override; - -protected: - void implEnsureFormatter(); }; |