summaryrefslogtreecommitdiff
path: root/include/comphelper/weakeventlistener.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/weakeventlistener.hxx')
-rw-r--r--include/comphelper/weakeventlistener.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/weakeventlistener.hxx b/include/comphelper/weakeventlistener.hxx
index 47efe383c027..92381fcf8bd8 100644
--- a/include/comphelper/weakeventlistener.hxx
+++ b/include/comphelper/weakeventlistener.hxx
@@ -117,12 +117,12 @@ namespace comphelper
}
// XEventListener overridables
- virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
+ virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException) override;
protected:
// OComponentHelper overridables
// to be overridden, again - the derived class should revoke the listener from the broadcaster
- virtual void SAL_CALL disposing( ) SAL_OVERRIDE = 0;
+ virtual void SAL_CALL disposing( ) override = 0;
};
@@ -146,7 +146,7 @@ namespace comphelper
protected:
using OWeakEventListenerAdapter_Base::disposing;
- virtual void SAL_CALL disposing( ) SAL_OVERRIDE;
+ virtual void SAL_CALL disposing( ) override;
};