diff options
author | Sascha Ballach <sab@openoffice.org> | 2002-01-18 10:57:22 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2002-01-18 10:57:22 +0000 |
commit | a043ecb23648772e20cd61d66626d99c4e7c9bcd (patch) | |
tree | d3cd1cda16335cc820859e3d4fa5616883b578ac /sc/source/ui/inc | |
parent | 54c8ea368449ffb55beece6402be0ed653cc39a6 (diff) |
#95584#; getAccessibleChild method throws exception lang::IndexOutOfBoundsException
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/AccessibleDocument.hxx | 7 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessibleTableBase.hxx | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/sc/source/ui/inc/AccessibleDocument.hxx b/sc/source/ui/inc/AccessibleDocument.hxx index ec210ae0ad99..5665f8cdc639 100644 --- a/sc/source/ui/inc/AccessibleDocument.hxx +++ b/sc/source/ui/inc/AccessibleDocument.hxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleDocument.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: sab $ $Date: 2002-01-18 09:52:47 $ + * last change: $Author: sab $ $Date: 2002-01-18 11:56:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -102,7 +102,8 @@ public: /// Return the specified child or NULL if index is invalid. virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible> SAL_CALL getAccessibleChild (long nIndex) - throw (::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::RuntimeException, + ::com::sun::star::lang::IndexOutOfBoundsException); /// Return the set of current states. virtual ::com::sun::star::uno::Reference< diff --git a/sc/source/ui/inc/AccessibleTableBase.hxx b/sc/source/ui/inc/AccessibleTableBase.hxx index fa76f6b14cdb..7366e0bc2c0a 100644 --- a/sc/source/ui/inc/AccessibleTableBase.hxx +++ b/sc/source/ui/inc/AccessibleTableBase.hxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleTableBase.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: sab $ $Date: 2002-01-18 09:52:47 $ + * last change: $Author: sab $ $Date: 2002-01-18 11:56:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -228,7 +228,8 @@ public: // is overloaded to calculate this on demand virtual ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible> SAL_CALL getAccessibleChild (long nIndex) - throw (::com::sun::star::uno::RuntimeException); + throw (::com::sun::star::uno::RuntimeException, + ::com::sun::star::lang::IndexOutOfBoundsException); /// Return this object's description. virtual ::rtl::OUString SAL_CALL |