summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-20 23:05:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-24 08:47:01 +0100
commit6b71293436eea26ae3a293d86f603d583d2fc7b3 (patch)
treebb3f70f5a6efc50a1bc10e8deec89f76d7c44adc /extensions
parent997ec3f4864bf48746e0b839cc98f6e4a8ac1e95 (diff)
-Werror,-Winconsistent-missing-override
Change-Id: I851a1ce314dc3c47744d7a039065a945e62568d8
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/ole/servprov.hxx20
1 files changed, 10 insertions, 10 deletions
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<sal_Int8>& 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<XInterface> SAL_CALL createInstance(const OUString& ServiceSpecifier) throw( Exception, RuntimeException);
- virtual Reference<XInterface> SAL_CALL createInstanceWithArguments(const OUString& ServiceSpecifier, const Sequence< Any >& Arguments) throw (Exception, RuntimeException);
- Sequence< OUString > SAL_CALL getAvailableServiceNames() throw (RuntimeException);
+ Reference<XInterface> SAL_CALL createInstance(const OUString& ServiceSpecifier) throw( Exception, RuntimeException) override;
+ Reference<XInterface> 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<XBridgeSupplier2> m_bridgeSupplier;