diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-19 09:08:19 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-19 09:12:20 +0200 |
commit | 474cd8ebc4a48f30fad3fd748aa363dbd0755477 (patch) | |
tree | 49421217e0846a66164685c1fbe267bda149004b /desktop/test/deployment/active | |
parent | b870ecd6c4fdf789322986f9f2cdc567f6401f22 (diff) |
loplugin:saloverride
Change-Id: I82f052cd62ea1561c3f77231cd285901ff1d6a80
Diffstat (limited to 'desktop/test/deployment/active')
-rw-r--r-- | desktop/test/deployment/active/active_native.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/desktop/test/deployment/active/active_native.cxx b/desktop/test/deployment/active/active_native.cxx index bb2757de10f1..b65cff58f843 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_; |