summaryrefslogtreecommitdiffstats
path: root/winaccessibility/inc/AccDescendantManagerEventListener.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-11-19 20:31:31 +0100
committerMichael Stahl <mstahl@redhat.com>2013-11-20 01:33:41 +0100
commit753b3cbb8b2a0e1004d157a247e5e6c6da3f0b62 (patch)
tree0c8934abd12159e74b1bf9ee1a709112e56e37aa /winaccessibility/inc/AccDescendantManagerEventListener.hxx
parentfdo#70596 - fix version dependency for deb-packages (diff)
downloadcore-753b3cbb8b2a0e1004d157a247e5e6c6da3f0b62.tar.gz
core-753b3cbb8b2a0e1004d157a247e5e6c6da3f0b62.zip
winaccessibility: remove "using" from headers
Change-Id: I212c1f3449416ff3629a677112fc5a4702e89eb0
Diffstat (limited to 'winaccessibility/inc/AccDescendantManagerEventListener.hxx')
-rw-r--r--winaccessibility/inc/AccDescendantManagerEventListener.hxx22
1 files changed, 13 insertions, 9 deletions
diff --git a/winaccessibility/inc/AccDescendantManagerEventListener.hxx b/winaccessibility/inc/AccDescendantManagerEventListener.hxx
index e9ba41ca1176..240e4f79047e 100644
--- a/winaccessibility/inc/AccDescendantManagerEventListener.hxx
+++ b/winaccessibility/inc/AccDescendantManagerEventListener.hxx
@@ -25,8 +25,6 @@
#include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
#include <com/sun/star/accessibility/XAccessible.hpp>
-using namespace ::com::sun::star::uno;
-
/**
* AccDescendantManagerEventListener is inherited from AccComponentEventListener. It handles
* the evnets generated by active descendant controls. They are: TREE, LIST, and TABLE.
@@ -45,18 +43,24 @@ public:
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(Any oldValue, Any newValue);
+ virtual void SAL_CALL handleSelectionChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
//for child changed event
- virtual void SAL_CALL handleChildChangedEvent (Any oldValue, Any newValue);
+ virtual void SAL_CALL handleChildChangedEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
- virtual void SAL_CALL handleChildChangedNoFocusEvent(Any oldValue, Any newValue);
+ virtual void SAL_CALL handleChildChangedNoFocusEvent(
+ css::uno::Any oldValue, css::uno::Any newValue);
- bool NotifyChildEvent(short nWinEvent,const Any &Value);
+ bool NotifyChildEvent(short nWinEvent,const css::uno::Any &Value);
- virtual void handleSelectionChangedAddEvent(const Any &oldValue, const Any &newValue);
- virtual void handleSelectionChangedRemoveEvent(const Any &oldValue, const Any &newValue);
- virtual void handleSelectionChangedWithinEvent(const Any &oldValue, const Any &newValue);
+ virtual void handleSelectionChangedAddEvent(
+ const css::uno::Any &oldValue, const css::uno::Any &newValue);
+ virtual void handleSelectionChangedRemoveEvent(
+ const css::uno::Any &oldValue, const css::uno::Any &newValue);
+ virtual void handleSelectionChangedWithinEvent(
+ const css::uno::Any &oldValue, const css::uno::Any &newValue);
};
#endif