diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:16:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:52 +0200 |
commit | 0e507ae031768deceab236a41d1bbe9fb5123cea (patch) | |
tree | 34cc1626f1e8fa6d50d6edd88045be6252150f19 /accessibility | |
parent | db246b491c1639942d9f952658d33974e9b06201 (diff) |
various: remove SAL_THROW macro
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx | 3 | ||||
-rw-r--r-- | accessibility/source/extended/accessibletablistboxtable.cxx | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx b/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx index 4cbad6c50ad0..92e6fe996706 100644 --- a/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx +++ b/accessibility/inc/accessibility/extended/accessibletablistboxtable.hxx @@ -47,8 +47,7 @@ private: // helpers ---------------------------------------------------------------- /** Throws an exception, if nIndex is not a valid child index. */ - void ensureValidIndex( sal_Int32 _nIndex ) const - SAL_THROW( ( ::com::sun::star::lang::IndexOutOfBoundsException ) ); + void ensureValidIndex( sal_Int32 _nIndex ) const; /** Returns true, if the specified row is selected. */ bool implIsRowSelected( sal_Int32 _nRow ) const; diff --git a/accessibility/source/extended/accessibletablistboxtable.cxx b/accessibility/source/extended/accessibletablistboxtable.cxx index 67ffab24a0c3..e726dca9c5aa 100644 --- a/accessibility/source/extended/accessibletablistboxtable.cxx +++ b/accessibility/source/extended/accessibletablistboxtable.cxx @@ -264,7 +264,6 @@ namespace accessibility // helpers -------------------------------------------------------------------- void AccessibleTabListBoxTable::ensureValidIndex( sal_Int32 _nIndex ) const - SAL_THROW( ( IndexOutOfBoundsException ) ) { if ( ( _nIndex < 0 ) || ( _nIndex >= implGetCellCount() ) ) throw IndexOutOfBoundsException(); |