diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-01 12:01:02 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-01 12:01:02 +0000 |
commit | 947cdc247de8c031508f66b0bc73a910fb9a3cef (patch) | |
tree | 1b99d6a583ae00a5f79c3901f0dc617845220d80 /svx | |
parent | 1d6f196700b9b3ce3b9c6907b2e154e793a6a983 (diff) |
INTEGRATION: CWS atkbridge8_SRC680 (1.15.148); FILE MERGED
2007/10/12 11:38:50 obr 1.15.148.1: #b6581554# fixed incorrect exception specification for GetChild
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/ChildrenManager.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/source/accessibility/ChildrenManager.cxx b/svx/source/accessibility/ChildrenManager.cxx index 952322ea8612..6775701f4527 100644 --- a/svx/source/accessibility/ChildrenManager.cxx +++ b/svx/source/accessibility/ChildrenManager.cxx @@ -4,9 +4,9 @@ * * $RCSfile: ChildrenManager.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: hr $ $Date: 2007-06-27 16:40:39 $ + * last change: $Author: hr $ $Date: 2007-11-01 13:01:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -97,7 +97,8 @@ long ChildrenManager::GetChildCount (void) const throw () Reference<XAccessible> ChildrenManager::GetChild (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->GetChild (nIndex); |