[Libreoffice-commits] core.git: desktop/test

Stephan Bergmann sbergman at redhat.com
Fri Sep 19 00:13:06 PDT 2014


 desktop/test/deployment/active/active_native.cxx   |   22 ++++++++++-----------
 desktop/test/deployment/passive/passive_native.cxx |   22 ++++++++++-----------
 2 files changed, 22 insertions(+), 22 deletions(-)

New commits:
commit 474cd8ebc4a48f30fad3fd748aa363dbd0755477
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Sep 19 09:08:19 2014 +0200

    loplugin:saloverride
    
    Change-Id: I82f052cd62ea1561c3f77231cd285901ff1d6a80

diff --git a/desktop/test/deployment/active/active_native.cxx b/desktop/test/deployment/active/active_native.cxx
index bb2757de..b65cff5 100644
--- a/desktop/test/deployment/active/active_native.cxx
+++ b/desktop/test/deployment/active/active_native.cxx
@@ -81,25 +81,25 @@ private:
     virtual ~Provider() {}
 
     virtual OUString SAL_CALL getImplementationName()
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getImplementationName(); }
 
     virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return cppu::supportsService(this, ServiceName); }
 
     virtual css::uno::Sequence< OUString > SAL_CALL
-    getSupportedServiceNames() throw (css::uno::RuntimeException)
+    getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getSupportedServiceNames(); }
 
     virtual css::uno::Reference< css::frame::XDispatch > SAL_CALL queryDispatch(
         css::util::URL const &, OUString const &, sal_Int32)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     virtual css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > >
     SAL_CALL queryDispatches(
         css::uno::Sequence< css::frame::DispatchDescriptor > const & Requests)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     css::uno::Reference< css::uno::XComponentContext > context_;
 };
@@ -173,32 +173,32 @@ private:
     virtual ~Dispatch() {}
 
     virtual OUString SAL_CALL getImplementationName()
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getImplementationName(); }
 
     virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return cppu::supportsService(this, ServiceName); }
 
     virtual css::uno::Sequence< OUString > SAL_CALL
-    getSupportedServiceNames() throw (css::uno::RuntimeException)
+    getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getSupportedServiceNames(); }
 
     virtual void SAL_CALL dispatch(
         css::util::URL const &,
         css::uno::Sequence< css::beans::PropertyValue > const &)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     virtual void SAL_CALL addStatusListener(
         css::uno::Reference< css::frame::XStatusListener > const &,
         css::util::URL const &)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     {}
 
     virtual void SAL_CALL removeStatusListener(
         css::uno::Reference< css::frame::XStatusListener > const &,
         css::util::URL const &)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     {}
 
     css::uno::Reference< css::uno::XComponentContext > context_;
diff --git a/desktop/test/deployment/passive/passive_native.cxx b/desktop/test/deployment/passive/passive_native.cxx
index 38708e7..2e64bcc 100644
--- a/desktop/test/deployment/passive/passive_native.cxx
+++ b/desktop/test/deployment/passive/passive_native.cxx
@@ -78,25 +78,25 @@ private:
     virtual ~Provider() {}
 
     virtual OUString SAL_CALL getImplementationName()
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getImplementationName(); }
 
     virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return cppu::supportsService(this, ServiceName); }
 
     virtual css::uno::Sequence< OUString > SAL_CALL
-    getSupportedServiceNames() throw (css::uno::RuntimeException)
+    getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getSupportedServiceNames(); }
 
     virtual css::uno::Reference< css::frame::XDispatch > SAL_CALL queryDispatch(
         css::util::URL const &, OUString const &, sal_Int32)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     virtual css::uno::Sequence< css::uno::Reference< css::frame::XDispatch > >
     SAL_CALL queryDispatches(
         css::uno::Sequence< css::frame::DispatchDescriptor > const & Requests)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     css::uno::Reference< css::uno::XComponentContext > context_;
 };
@@ -170,32 +170,32 @@ private:
     virtual ~Dispatch() {}
 
     virtual OUString SAL_CALL getImplementationName()
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getImplementationName(); }
 
     virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return cppu::supportsService(this, ServiceName); }
 
     virtual css::uno::Sequence< OUString > SAL_CALL
-    getSupportedServiceNames() throw (css::uno::RuntimeException)
+    getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE
     { return static_getSupportedServiceNames(); }
 
     virtual void SAL_CALL dispatch(
         css::util::URL const &,
         css::uno::Sequence< css::beans::PropertyValue > const &)
-        throw (css::uno::RuntimeException);
+        throw (css::uno::RuntimeException) SAL_OVERRIDE;
 
     virtual void SAL_CALL addStatusListener(
         css::uno::Reference< css::frame::XStatusListener > const &,
         css::util::URL const &)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     {}
 
     virtual void SAL_CALL removeStatusListener(
         css::uno::Reference< css::frame::XStatusListener > const &,
         css::util::URL const &)
-        throw (css::uno::RuntimeException)
+        throw (css::uno::RuntimeException) SAL_OVERRIDE
     {}
 
     css::uno::Reference< css::uno::XComponentContext > context_;


More information about the Libreoffice-commits mailing list