From b4c890cb65745d05f92e451bb675fc0b2c5e31dc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 24 Oct 2017 11:03:25 +0200 Subject: loplugin:finalclasses in sfx2..svl Change-Id: I71b78135b3d0259657438c4401340bb35ab5c6e0 Reviewed-on: https://gerrit.libreoffice.org/43742 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svl/source/numbers/supservs.hxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'svl') 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(); }; -- cgit