diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-05-05 14:35:35 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-05-05 14:35:35 +0000 |
commit | 1d71befc95b3300e9396cca75621cffeb3814afa (patch) | |
tree | 8ecc580cefacc13d71cf435e6fda135681fb1eb7 /accessibility/source/extended/accessibletablistboxtable.cxx | |
parent | c47e4ca8e925fd36164b8cd24cfbd70b90ec6135 (diff) |
INTEGRATION: CWS dba30b (1.2.42); FILE MERGED
2008/04/15 22:01:48 fs 1.2.42.2: RESYNC: (1.2-1.3); FILE MERGED
2008/03/06 08:44:10 fs 1.2.42.1: removed unused methods
Issue number: i86577
Submitted by: cmc@openoffice.org
Reviewed by: frank.schoenheit@sun.com
Diffstat (limited to 'accessibility/source/extended/accessibletablistboxtable.cxx')
-rw-r--r-- | accessibility/source/extended/accessibletablistboxtable.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/accessibility/source/extended/accessibletablistboxtable.cxx b/accessibility/source/extended/accessibletablistboxtable.cxx index 2babc6e42..7cbd72dc8 100644 --- a/accessibility/source/extended/accessibletablistboxtable.cxx +++ b/accessibility/source/extended/accessibletablistboxtable.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: accessibletablistboxtable.cxx,v $ - * $Revision: 1.3 $ + * $Revision: 1.4 $ * * This file is part of OpenOffice.org. * @@ -207,13 +207,6 @@ namespace accessibility throw IndexOutOfBoundsException(); } - void AccessibleTabListBoxTable::ensureValidPosition( sal_Int32 _nRow, sal_Int32 _nColumn ) const - SAL_THROW( ( IndexOutOfBoundsException ) ) - { - if ( ( _nRow < 0 ) || ( _nRow >= implGetRowCount() ) || ( _nColumn < 0 ) || ( _nColumn >= implGetColumnCount() ) ) - throw IndexOutOfBoundsException(); - } - sal_Bool AccessibleTabListBoxTable::implIsRowSelected( sal_Int32 _nRow ) const { return m_pTabListBox ? m_pTabListBox->IsSelected( m_pTabListBox->GetEntry( _nRow ) ) : sal_False; |