summaryrefslogtreecommitdiffstats
path: root/accessibility/source
diff options
context:
space:
mode:
authorThorsten Behrens <tbehrens@suse.com>2012-11-29 00:27:03 +0100
committerThorsten Behrens <tbehrens@suse.com>2012-11-29 16:58:16 +0100
commit70626249cd247d9acdad417b8eaf252bae22c059 (patch)
tree2327193318672b583f12be99cdcaec5ef4d3830d /accessibility/source
parentPrettify cppumaker output. (diff)
downloadcore-70626249cd247d9acdad417b8eaf252bae22c059.tar.gz
core-70626249cd247d9acdad417b8eaf252bae22c059.zip
API CHANGE a11y unpublishing and add/removeListener rename.
The a11y API has never really been picked up by tools vendors, let's not tie ourselves up here for no good reason. This unpublishes all css::accessibility, and dependend API. With that, we can change the rather unfortunately-named add/ removeEventListener to be add/removeAccessibleEventListener, thus not conflicting with the XComponent methods of the same name. Change-Id: I595598c3a8e46415f80b2780f333333174865fe4
Diffstat (limited to 'accessibility/source')
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxBase.cxx4
-rw-r--r--accessibility/source/extended/AccessibleGridControlBase.cxx4
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx4
-rw-r--r--accessibility/source/extended/accessiblelistboxentry.cxx4
-rw-r--r--accessibility/source/extended/textwindowaccessibility.cxx4
-rw-r--r--accessibility/source/standard/vclxaccessiblelistitem.cxx4
6 files changed, 12 insertions, 12 deletions
diff --git a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx
index dfcd8e56428a..ab6f9acb4351 100644
--- a/accessibility/source/extended/AccessibleBrowseBoxBase.cxx
+++ b/accessibility/source/extended/AccessibleBrowseBoxBase.cxx
@@ -288,7 +288,7 @@ void SAL_CALL AccessibleBrowseBoxBase::focusLost( const ::com::sun::star::awt::F
}
// XAccessibleEventBroadcaster ------------------------------------------------
-void SAL_CALL AccessibleBrowseBoxBase::addEventListener(
+void SAL_CALL AccessibleBrowseBoxBase::addAccessibleEventListener(
const Reference< XAccessibleEventListener>& _rxListener )
throw ( uno::RuntimeException )
{
@@ -302,7 +302,7 @@ void SAL_CALL AccessibleBrowseBoxBase::addEventListener(
}
}
-void SAL_CALL AccessibleBrowseBoxBase::removeEventListener(
+void SAL_CALL AccessibleBrowseBoxBase::removeAccessibleEventListener(
const Reference< XAccessibleEventListener>& _rxListener )
throw ( uno::RuntimeException )
{
diff --git a/accessibility/source/extended/AccessibleGridControlBase.cxx b/accessibility/source/extended/AccessibleGridControlBase.cxx
index 8d71c2605b86..553ccbb19362 100644
--- a/accessibility/source/extended/AccessibleGridControlBase.cxx
+++ b/accessibility/source/extended/AccessibleGridControlBase.cxx
@@ -238,7 +238,7 @@ sal_Bool SAL_CALL AccessibleGridControlBase::isFocusTraversable()
}
// XAccessibleEventBroadcaster ------------------------------------------------
-void SAL_CALL AccessibleGridControlBase::addEventListener(
+void SAL_CALL AccessibleGridControlBase::addAccessibleEventListener(
const Reference< XAccessibleEventListener>& _rxListener )
throw ( uno::RuntimeException )
{
@@ -252,7 +252,7 @@ void SAL_CALL AccessibleGridControlBase::addEventListener(
}
}
-void SAL_CALL AccessibleGridControlBase::removeEventListener(
+void SAL_CALL AccessibleGridControlBase::removeAccessibleEventListener(
const Reference< XAccessibleEventListener>& _rxListener )
throw ( uno::RuntimeException )
{
diff --git a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
index b1b58fca23f7..fd739fb3941c 100644
--- a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
+++ b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
@@ -507,7 +507,7 @@ throw(RuntimeException)
// -----------------------------------------------------------------------------
// XAccessibleEventBroadcaster
// -----------------------------------------------------------------------------
- void SAL_CALL AccessibleIconChoiceCtrlEntry::addEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+ void SAL_CALL AccessibleIconChoiceCtrlEntry::addAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if (xListener.is())
{
@@ -518,7 +518,7 @@ throw(RuntimeException)
}
}
// -----------------------------------------------------------------------------
- void SAL_CALL AccessibleIconChoiceCtrlEntry::removeEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+ void SAL_CALL AccessibleIconChoiceCtrlEntry::removeAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if (xListener.is())
{
diff --git a/accessibility/source/extended/accessiblelistboxentry.cxx b/accessibility/source/extended/accessiblelistboxentry.cxx
index 1c038e7b9695..ebb69f1994a7 100644
--- a/accessibility/source/extended/accessiblelistboxentry.cxx
+++ b/accessibility/source/extended/accessiblelistboxentry.cxx
@@ -593,7 +593,7 @@ namespace accessibility
// -----------------------------------------------------------------------------
// XAccessibleEventBroadcaster
// -----------------------------------------------------------------------------
- void SAL_CALL AccessibleListBoxEntry::addEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+ void SAL_CALL AccessibleListBoxEntry::addAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if (xListener.is())
{
@@ -604,7 +604,7 @@ namespace accessibility
}
}
// -----------------------------------------------------------------------------
- void SAL_CALL AccessibleListBoxEntry::removeEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+ void SAL_CALL AccessibleListBoxEntry::removeAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if (xListener.is())
{
diff --git a/accessibility/source/extended/textwindowaccessibility.cxx b/accessibility/source/extended/textwindowaccessibility.cxx
index f25c46cf64f3..547319ec1711 100644
--- a/accessibility/source/extended/textwindowaccessibility.cxx
+++ b/accessibility/source/extended/textwindowaccessibility.cxx
@@ -638,7 +638,7 @@ ParagraphImpl::getRunAttributes(::sal_Int32 Index, const ::css::uno::Sequence< O
// virtual
-void SAL_CALL ParagraphImpl::addEventListener(
+void SAL_CALL ParagraphImpl::addAccessibleEventListener(
::css::uno::Reference<
::css::accessibility::XAccessibleEventListener > const & rListener)
throw (::css::uno::RuntimeException)
@@ -662,7 +662,7 @@ void SAL_CALL ParagraphImpl::addEventListener(
}
// virtual
-void SAL_CALL ParagraphImpl::removeEventListener(
+void SAL_CALL ParagraphImpl::removeAccessibleEventListener(
::css::uno::Reference<
::css::accessibility::XAccessibleEventListener > const & rListener)
throw (::css::uno::RuntimeException)
diff --git a/accessibility/source/standard/vclxaccessiblelistitem.cxx b/accessibility/source/standard/vclxaccessiblelistitem.cxx
index 9676f7828080..1a9471ce967a 100644
--- a/accessibility/source/standard/vclxaccessiblelistitem.cxx
+++ b/accessibility/source/standard/vclxaccessiblelistitem.cxx
@@ -599,7 +599,7 @@ sal_Bool SAL_CALL VCLXAccessibleListItem::copyText( sal_Int32 nStartIndex, sal_I
// -----------------------------------------------------------------------------
// XAccessibleEventBroadcaster
// -----------------------------------------------------------------------------
-void SAL_CALL VCLXAccessibleListItem::addEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+void SAL_CALL VCLXAccessibleListItem::addAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if (xListener.is())
{
@@ -609,7 +609,7 @@ void SAL_CALL VCLXAccessibleListItem::addEventListener( const Reference< XAccess
}
}
// -----------------------------------------------------------------------------
-void SAL_CALL VCLXAccessibleListItem::removeEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
+void SAL_CALL VCLXAccessibleListItem::removeAccessibleEventListener( const Reference< XAccessibleEventListener >& xListener ) throw (RuntimeException)
{
if ( xListener.is() && m_nClientId )
{