summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/ChildrenManager.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 14:55:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 15:30:27 +0000
commitc7a6e0645acc5bf6d92fda8986410866272bbbd6 (patch)
tree15c847b924fa99b04dfc57aad6c9cd1cabd67181 /svx/source/accessibility/ChildrenManager.cxx
parent59fa74396ff21c98decaa83be724054e5080a536 (diff)
coverity#1132721 fix exception specs
Change-Id: I1c499f8b994d29e265a66f4219d4c3fddb237a89
Diffstat (limited to 'svx/source/accessibility/ChildrenManager.cxx')
-rw-r--r--svx/source/accessibility/ChildrenManager.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/accessibility/ChildrenManager.cxx b/svx/source/accessibility/ChildrenManager.cxx
index 958c08db5446..2a1b854e048d 100644
--- a/svx/source/accessibility/ChildrenManager.cxx
+++ b/svx/source/accessibility/ChildrenManager.cxx
@@ -86,7 +86,8 @@ Reference<XAccessible> ChildrenManager::GetChild (const Reference<drawing::XShap
::com::sun::star::uno::Reference<
::com::sun::star::drawing::XShape> ChildrenManager::GetChildShape(long nIndex)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException,
+ ::com::sun::star::lang::IndexOutOfBoundsException)
{
OSL_ASSERT (mpImpl != NULL);
return mpImpl->GetChildShape(nIndex);