summaryrefslogtreecommitdiffstats
path: root/winaccessibility/inc/AccDescendantManagerEventListener.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/AccDescendantManagerEventListener.hxx
parentwinaccessibility: remove IsXPOrLater (diff)
downloadcore-2fb80b6d30a6e5c6cd554c5c5cee2215c81a4b06.tar.gz
core-2fb80b6d30a6e5c6cd554c5c5cee2215c81a4b06.zip
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/AccDescendantManagerEventListener.hxx')
-rw-r--r--winaccessibility/inc/AccDescendantManagerEventListener.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/winaccessibility/inc/AccDescendantManagerEventListener.hxx b/winaccessibility/inc/AccDescendantManagerEventListener.hxx
index 240e4f79047e..bb5add64689f 100644
--- a/winaccessibility/inc/AccDescendantManagerEventListener.hxx
+++ b/winaccessibility/inc/AccDescendantManagerEventListener.hxx
@@ -39,27 +39,27 @@ public:
AccDescendantManagerEventListener(com::sun::star::accessibility::XAccessible* pAcc, AccObjectManagerAgent* Agent);
virtual ~AccDescendantManagerEventListener();
- //AccessibleEventListener
+ // XAccessibleEventListener
virtual void SAL_CALL notifyEvent( const ::com::sun::star::accessibility::AccessibleEventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException);
//for selection changed event
- virtual void SAL_CALL handleSelectionChangedEvent(
+ virtual void HandleSelectionChangedEvent(
css::uno::Any oldValue, css::uno::Any newValue);
//for child changed event
- virtual void SAL_CALL handleChildChangedEvent(
+ virtual void HandleChildChangedEvent(
css::uno::Any oldValue, css::uno::Any newValue);
- virtual void SAL_CALL handleChildChangedNoFocusEvent(
+ virtual void HandleChildChangedNoFocusEvent(
css::uno::Any oldValue, css::uno::Any newValue);
bool NotifyChildEvent(short nWinEvent,const css::uno::Any &Value);
- virtual void handleSelectionChangedAddEvent(
+ virtual void HandleSelectionChangedAddEvent(
const css::uno::Any &oldValue, const css::uno::Any &newValue);
- virtual void handleSelectionChangedRemoveEvent(
+ virtual void HandleSelectionChangedRemoveEvent(
const css::uno::Any &oldValue, const css::uno::Any &newValue);
- virtual void handleSelectionChangedWithinEvent(
+ virtual void HandleSelectionChangedWithinEvent(
const css::uno::Any &oldValue, const css::uno::Any &newValue);
};