summaryrefslogtreecommitdiff
path: root/winaccessibility/inc/AccComponentEventListener.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'winaccessibility/inc/AccComponentEventListener.hxx')
-rw-r--r--winaccessibility/inc/AccComponentEventListener.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/winaccessibility/inc/AccComponentEventListener.hxx b/winaccessibility/inc/AccComponentEventListener.hxx
index a47da0eac35f..05ecc12d7952 100644
--- a/winaccessibility/inc/AccComponentEventListener.hxx
+++ b/winaccessibility/inc/AccComponentEventListener.hxx
@@ -25,7 +25,7 @@
#include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
#include <com/sun/star/accessibility/XAccessible.hpp>
-using namespace ::com::sun::star::uno;
+
/**
* AccComponentEventListener is inherited from AccEventListener. It handles the evnets
* generated by component controls. The accessible roles are: CHECK_BOX, ICON, LABEL,
@@ -45,16 +45,19 @@ public:
virtual void SAL_CALL notifyEvent( const ::com::sun::star::accessibility::AccessibleEventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException);
//for value changed event
- virtual void SAL_CALL handleValueChangedEvent(Any oldValue, Any newValue);
+ virtual void SAL_CALL handleValueChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
//for action changed event
virtual void SAL_CALL handleActionChangedEvent();
//for text changed event
- virtual void SAL_CALL handleTextChangedEvent(Any oldValue, Any newValue);
+ virtual void SAL_CALL handleTextChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
//for caret changed event
- virtual void SAL_CALL handleCaretChangedEvent(Any oldValue, Any newValue);
+ virtual void SAL_CALL handleCaretChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
//for visible data changed event
virtual void SAL_CALL handleVisibleDataChangedEvent();