summaryrefslogtreecommitdiff
path: root/include/comphelper/configurationlistener.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/configurationlistener.hxx')
-rw-r--r--include/comphelper/configurationlistener.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/configurationlistener.hxx b/include/comphelper/configurationlistener.hxx
index 0b9a872e777e..2bdb2eecdd53 100644
--- a/include/comphelper/configurationlistener.hxx
+++ b/include/comphelper/configurationlistener.hxx
@@ -42,7 +42,7 @@ template< typename uno_type > class ConfigurationListenerProperty : public Confi
{
uno_type maValue;
protected:
- virtual void setProperty(const css::uno::Any &aProperty) SAL_OVERRIDE
+ virtual void setProperty(const css::uno::Any &aProperty) override
{
aProperty >>= maValue;
}
@@ -91,12 +91,12 @@ public:
// XPropertyChangeListener implementation
virtual void SAL_CALL disposing(css::lang::EventObject const &)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
/// Notify of the property change
virtual void SAL_CALL propertyChange(
css::beans::PropertyChangeEvent const &rEvt )
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
};
template< typename uno_type > ConfigurationListenerProperty< uno_type >::ConfigurationListenerProperty(const rtl::Reference< ConfigurationListener > &xListener, const OUString &rProp )