summaryrefslogtreecommitdiff
path: root/sd/source/ui/accessibility/AccessibleOutlineView.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/accessibility/AccessibleOutlineView.cxx')
-rw-r--r--sd/source/ui/accessibility/AccessibleOutlineView.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/accessibility/AccessibleOutlineView.cxx b/sd/source/ui/accessibility/AccessibleOutlineView.cxx
index 4980d77a7b4d..c37ab858f765 100644
--- a/sd/source/ui/accessibility/AccessibleOutlineView.cxx
+++ b/sd/source/ui/accessibility/AccessibleOutlineView.cxx
@@ -122,7 +122,7 @@ void AccessibleOutlineView::ViewForwarderChanged (ChangeType aChangeType,
sal_Int32 SAL_CALL
AccessibleOutlineView::getAccessibleChildCount (void)
- throw (uno::RuntimeException)
+ throw (uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
@@ -133,7 +133,7 @@ sal_Int32 SAL_CALL
uno::Reference<XAccessible> SAL_CALL
AccessibleOutlineView::getAccessibleChild (sal_Int32 nIndex)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();
// Forward request to children manager.
@@ -144,7 +144,7 @@ uno::Reference<XAccessible> SAL_CALL
OUString SAL_CALL
AccessibleOutlineView::getAccessibleName(void)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
SolarMutexGuard g;
@@ -172,7 +172,7 @@ OUString SAL_CALL
//===== XAccessibleEventBroadcaster ========================================
-void SAL_CALL AccessibleOutlineView::addAccessibleEventListener( const uno::Reference< XAccessibleEventListener >& xListener ) throw (uno::RuntimeException)
+void SAL_CALL AccessibleOutlineView::addAccessibleEventListener( const uno::Reference< XAccessibleEventListener >& xListener ) throw (uno::RuntimeException, std::exception)
{
// delegate listener handling to children manager.
if ( ! IsDisposed())
@@ -180,7 +180,7 @@ void SAL_CALL AccessibleOutlineView::addAccessibleEventListener( const uno::Refe
AccessibleContextBase::addEventListener(xListener);
}
-void SAL_CALL AccessibleOutlineView::removeAccessibleEventListener( const uno::Reference< XAccessibleEventListener >& xListener ) throw (uno::RuntimeException)
+void SAL_CALL AccessibleOutlineView::removeAccessibleEventListener( const uno::Reference< XAccessibleEventListener >& xListener ) throw (uno::RuntimeException, std::exception)
{
// forward
if ( ! IsDisposed())
@@ -192,7 +192,7 @@ void SAL_CALL AccessibleOutlineView::removeAccessibleEventListener( const uno::R
OUString SAL_CALL
AccessibleOutlineView::getImplementationName (void)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
return OUString("AccessibleOutlineView");
}
@@ -202,7 +202,7 @@ OUString SAL_CALL
void SAL_CALL
AccessibleOutlineView::disposing (const lang::EventObject& rEventObject)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
AccessibleDocumentViewBase::disposing (rEventObject);
}
@@ -243,7 +243,7 @@ void SAL_CALL AccessibleOutlineView::disposing (void)
void SAL_CALL
AccessibleOutlineView::propertyChange (const beans::PropertyChangeEvent& rEventObject)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException, std::exception)
{
ThrowIfDisposed ();