summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/AccessibleGridControlTableBase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/extended/AccessibleGridControlTableBase.cxx')
-rw-r--r--accessibility/source/extended/AccessibleGridControlTableBase.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTableBase.cxx b/accessibility/source/extended/AccessibleGridControlTableBase.cxx
index acf58c091cd9..a1d8abae6966 100644
--- a/accessibility/source/extended/AccessibleGridControlTableBase.cxx
+++ b/accessibility/source/extended/AccessibleGridControlTableBase.cxx
@@ -214,15 +214,13 @@ void AccessibleGridControlTableBase::implGetSelectedRows( Sequence< sal_Int32 >&
void AccessibleGridControlTableBase::ensureIsValidRow( sal_Int32 nRow )
{
if( nRow >= m_aTable.GetRowCount() )
- throw lang::IndexOutOfBoundsException(
- OUString( "row index is invalid" ), *this );
+ throw lang::IndexOutOfBoundsException( "row index is invalid", *this );
}
void AccessibleGridControlTableBase::ensureIsValidColumn( sal_Int32 nColumn )
{
if( nColumn >= m_aTable.GetColumnCount() )
- throw lang::IndexOutOfBoundsException(
- OUString( "column index is invalid" ), *this );
+ throw lang::IndexOutOfBoundsException( "column index is invalid", *this );
}
void AccessibleGridControlTableBase::ensureIsValidAddress(
@@ -235,8 +233,7 @@ void AccessibleGridControlTableBase::ensureIsValidAddress(
void AccessibleGridControlTableBase::ensureIsValidIndex( sal_Int32 nChildIndex )
{
if( nChildIndex >= m_aTable.GetRowCount()*m_aTable.GetColumnCount() )
- throw lang::IndexOutOfBoundsException(
- OUString( "child index is invalid" ), *this );
+ throw lang::IndexOutOfBoundsException( "child index is invalid", *this );
}