From 6b71293436eea26ae3a293d86f603d583d2fc7b3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 20 Nov 2015 23:05:52 +0100 Subject: -Werror,-Winconsistent-missing-override Change-Id: I851a1ce314dc3c47744d7a039065a945e62568d8 --- extensions/source/ole/servprov.hxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'extensions/source/ole') diff --git a/extensions/source/ole/servprov.hxx b/extensions/source/ole/servprov.hxx index eb08cb0561cc..06ced5eb136a 100644 --- a/extensions/source/ole/servprov.hxx +++ b/extensions/source/ole/servprov.hxx @@ -175,14 +175,14 @@ public: // XBridgeSupplier2 --------------------------------------------------- - virtual Any SAL_CALL createBridge(const Any& modelDepObject, + Any SAL_CALL createBridge(const Any& modelDepObject, const Sequence& ProcessId, sal_Int16 sourceModelType, sal_Int16 destModelType) - throw (IllegalArgumentException, RuntimeException); + throw (IllegalArgumentException, RuntimeException) override; // XInitialization - virtual void SAL_CALL initialize( const Sequence< Any >& aArguments ) throw(Exception, RuntimeException); + void SAL_CALL initialize( const Sequence< Any >& aArguments ) throw(Exception, RuntimeException) override; OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; @@ -194,8 +194,8 @@ public: throw (css::uno::RuntimeException, std::exception) override; // Abstract struct UnoConversionUtilities - virtual Reference< XInterface > createUnoWrapperInstance(); - virtual Reference< XInterface > createComWrapperInstance(); + Reference< XInterface > createUnoWrapperInstance() override; + Reference< XInterface > createComWrapperInstance() override; protected: }; @@ -218,9 +218,9 @@ public: ~OleClient_Impl(); // XMultiServiceFactory - virtual Reference SAL_CALL createInstance(const OUString& ServiceSpecifier) throw( Exception, RuntimeException); - virtual Reference SAL_CALL createInstanceWithArguments(const OUString& ServiceSpecifier, const Sequence< Any >& Arguments) throw (Exception, RuntimeException); - Sequence< OUString > SAL_CALL getAvailableServiceNames() throw (RuntimeException); + Reference SAL_CALL createInstance(const OUString& ServiceSpecifier) throw( Exception, RuntimeException) override; + Reference SAL_CALL createInstanceWithArguments(const OUString& ServiceSpecifier, const Sequence< Any >& Arguments) throw (Exception, RuntimeException) override; + Sequence< OUString > SAL_CALL getAvailableServiceNames() throw (RuntimeException) override; OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; @@ -232,8 +232,8 @@ public: throw (css::uno::RuntimeException, std::exception) override; // Abstract struct UnoConversionUtilities - virtual Reference< XInterface > createUnoWrapperInstance(); - virtual Reference< XInterface > createComWrapperInstance(); + Reference< XInterface > createUnoWrapperInstance() override; + Reference< XInterface > createComWrapperInstance() override; protected: Reference m_bridgeSupplier; -- cgit