diff options
Diffstat (limited to 'shell/source/backends/wininetbe/wininetbackend.hxx')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.hxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.hxx b/shell/source/backends/wininetbe/wininetbackend.hxx index 81098743bfe8..222ed09a1070 100644 --- a/shell/source/backends/wininetbe/wininetbackend.hxx +++ b/shell/source/backends/wininetbe/wininetbackend.hxx @@ -40,15 +40,15 @@ class WinInetBackend : public ::cppu::WeakImplHelper < // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw (uno::RuntimeException) ; + throw (uno::RuntimeException) override; virtual sal_Bool SAL_CALL supportsService( const OUString& aServiceName ) - throw (uno::RuntimeException) ; + throw (uno::RuntimeException) override; virtual uno::Sequence<OUString> SAL_CALL getSupportedServiceNames( ) - throw (uno::RuntimeException) ; + throw (uno::RuntimeException) override; /** Provides the implementation name. @@ -65,7 +65,7 @@ class WinInetBackend : public ::cppu::WeakImplHelper < // XPropertySet virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL - getPropertySetInfo() throw (css::uno::RuntimeException) + getPropertySetInfo() throw (css::uno::RuntimeException) override { return css::uno::Reference< css::beans::XPropertySetInfo >(); } virtual void SAL_CALL setPropertyValue( @@ -74,20 +74,20 @@ class WinInetBackend : public ::cppu::WeakImplHelper < css::beans::UnknownPropertyException, css::beans::PropertyVetoException, css::lang::IllegalArgumentException, - css::lang::WrappedTargetException, css::uno::RuntimeException); + css::lang::WrappedTargetException, css::uno::RuntimeException) override; virtual css::uno::Any SAL_CALL getPropertyValue( OUString const & PropertyName) throw ( css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, css::uno::RuntimeException); + css::lang::WrappedTargetException, css::uno::RuntimeException) override; virtual void SAL_CALL addPropertyChangeListener( OUString const &, css::uno::Reference< css::beans::XPropertyChangeListener > const &) throw ( css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, css::uno::RuntimeException) + css::lang::WrappedTargetException, css::uno::RuntimeException) override {} virtual void SAL_CALL removePropertyChangeListener( @@ -95,7 +95,7 @@ class WinInetBackend : public ::cppu::WeakImplHelper < css::uno::Reference< css::beans::XPropertyChangeListener > const &) throw ( css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, css::uno::RuntimeException) + css::lang::WrappedTargetException, css::uno::RuntimeException) override {} virtual void SAL_CALL addVetoableChangeListener( @@ -103,7 +103,7 @@ class WinInetBackend : public ::cppu::WeakImplHelper < css::uno::Reference< css::beans::XVetoableChangeListener > const &) throw ( css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, css::uno::RuntimeException) + css::lang::WrappedTargetException, css::uno::RuntimeException) override {} virtual void SAL_CALL removeVetoableChangeListener( @@ -111,7 +111,7 @@ class WinInetBackend : public ::cppu::WeakImplHelper < css::uno::Reference< css::beans::XVetoableChangeListener > const &) throw ( css::beans::UnknownPropertyException, - css::lang::WrappedTargetException, css::uno::RuntimeException) + css::lang::WrappedTargetException, css::uno::RuntimeException) override {} protected: @@ -123,7 +123,7 @@ class WinInetBackend : public ::cppu::WeakImplHelper < WinInetBackend(); /** Destructor */ - ~WinInetBackend() ; + ~WinInetBackend() override; private: css::beans::Optional< css::uno::Any > |