summaryrefslogtreecommitdiff
path: root/winaccessibility/inc/AccListEventListener.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-11-20 00:13:07 +0100
committerMichael Stahl <mstahl@redhat.com>2013-11-20 01:33:42 +0100
commit2fb80b6d30a6e5c6cd554c5c5cee2215c81a4b06 (patch)
treea85627901e2e33bb5ed004b75cc43d0746879000 /winaccessibility/inc/AccListEventListener.hxx
parent18f37ebc69959712ceb496e287d92e13bcf05d09 (diff)
winaccessibility: make listener methods a bit more obvious
- disambiguate overloading - only use SAL_CALL for UNO methods, and non-UNO methods start uppercase - use SAL_OVERRIDE Change-Id: Ib57adad65b2b8e8246b103ff77ce162b0b540422
Diffstat (limited to 'winaccessibility/inc/AccListEventListener.hxx')
-rw-r--r--winaccessibility/inc/AccListEventListener.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/winaccessibility/inc/AccListEventListener.hxx b/winaccessibility/inc/AccListEventListener.hxx
index 0addafd424de..bd70194b9697 100644
--- a/winaccessibility/inc/AccListEventListener.hxx
+++ b/winaccessibility/inc/AccListEventListener.hxx
@@ -40,14 +40,15 @@ public:
AccListEventListener(com::sun::star::accessibility::XAccessible* pAcc, AccObjectManagerAgent* Agent);
virtual ~AccListEventListener();
- //AccessibleEventListener
+ // XAccessibleEventListener
virtual void SAL_CALL notifyEvent( const ::com::sun::star::accessibility::AccessibleEventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException);
+
//for active descendant changed event
- virtual void SAL_CALL handleActiveDescendantChangedEvent(
+ virtual void HandleActiveDescendantChangedEvent(
css::uno::Any oldValue, css::uno::Any newValue);
//for value changed event
- virtual void SAL_CALL handleValueChangedEvent(
- css::uno::Any oldValue, css::uno::Any newValue);
+ virtual void HandleValueChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue) SAL_OVERRIDE;
};
#endif