loplugin:saloverride

Change-Id: I028d6da250bad64cca2d85c8bbf4a3b5a1300f1b
This commit is contained in:
Stephan Bergmann
2014-03-30 21:55:17 +02:00
parent 701d930816
commit 5eb733cf67

View File

@@ -40,13 +40,13 @@ public:
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
throw (uno::RuntimeException, std::exception);
throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService(const OUString& aServiceName)
throw (uno::RuntimeException, std::exception);
throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual uno::Sequence<OUString> SAL_CALL getSupportedServiceNames()
throw (uno::RuntimeException, std::exception);
throw (uno::RuntimeException, std::exception) SAL_OVERRIDE;
/**
Provides the implementation name.
@@ -64,7 +64,7 @@ public:
// XPropertySet
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
getPropertySetInfo() throw (css::uno::RuntimeException, std::exception)
getPropertySetInfo() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return css::uno::Reference< css::beans::XPropertySetInfo >(); }
virtual void SAL_CALL setPropertyValue(
@@ -73,20 +73,20 @@ public:
css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
css::lang::IllegalArgumentException,
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception);
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Any SAL_CALL getPropertyValue(
OUString const & PropertyName)
throw (
css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception);
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_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, std::exception)
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{}
virtual void SAL_CALL removePropertyChangeListener(
@@ -94,7 +94,7 @@ public:
css::uno::Reference< css::beans::XPropertyChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{}
virtual void SAL_CALL addVetoableChangeListener(
@@ -102,7 +102,7 @@ public:
css::uno::Reference< css::beans::XVetoableChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{}
virtual void SAL_CALL removeVetoableChangeListener(
@@ -110,7 +110,7 @@ public:
css::uno::Reference< css::beans::XVetoableChangeListener > const &)
throw (
css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception)
css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{}
protected: