summaryrefslogtreecommitdiff
path: root/svx/source/accessibility/ChildrenManagerImpl.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/ChildrenManagerImpl.cxx
parent59fa74396ff21c98decaa83be724054e5080a536 (diff)
coverity#1132721 fix exception specs
Change-Id: I1c499f8b994d29e265a66f4219d4c3fddb237a89
Diffstat (limited to 'svx/source/accessibility/ChildrenManagerImpl.cxx')
-rw-r--r--svx/source/accessibility/ChildrenManagerImpl.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/accessibility/ChildrenManagerImpl.cxx b/svx/source/accessibility/ChildrenManagerImpl.cxx
index f0ad75ad9df2..89d647e9f9e6 100644
--- a/svx/source/accessibility/ChildrenManagerImpl.cxx
+++ b/svx/source/accessibility/ChildrenManagerImpl.cxx
@@ -115,7 +115,8 @@ long ChildrenManagerImpl::GetChildCount (void) const throw ()
::com::sun::star::uno::Reference<
::com::sun::star::drawing::XShape> ChildrenManagerImpl::GetChildShape(long nIndex)
- throw (::com::sun::star::uno::RuntimeException)
+ throw (::com::sun::star::uno::RuntimeException,
+ ::com::sun::star::lang::IndexOutOfBoundsException)
{
uno::Reference<XAccessible> xAcc = GetChild(nIndex);
ChildDescriptorListType::iterator I, aEnd = maVisibleChildren.end();