summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-09-07 03:36:42 -0300
committerOlivier Hallot <olivier.hallot@alta.org.br>2012-09-07 12:26:19 +0000
commite1276e83e0e914eab8966a189948d2238c82a1b6 (patch)
tree7c010d0d9fcf5d43e53e638c535f44048b8ef571 /accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
parent346cf4ee5d2f82b59900de1f71160c0d90ffab41 (diff)
OUString cleanup in accessibility
Change-Id: Ie4e51632bf81053f0d32428bb7ef5b01ec301ccc Reviewed-on: https://gerrit.libreoffice.org/579 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx')
-rw-r--r--accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx b/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
index 95115a3582b8..cebe6681775d 100644
--- a/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
+++ b/accessibility/source/extended/AccessibleBrowseBoxTableBase.cxx
@@ -34,8 +34,6 @@
// ============================================================================
-using ::rtl::OUString;
-
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
using ::com::sun::star::uno::Any;
@@ -316,7 +314,7 @@ void AccessibleBrowseBoxTableBase::ensureIsValidRow( sal_Int32 nRow )
{
if( nRow >= implGetRowCount() )
throw lang::IndexOutOfBoundsException(
- OUString( RTL_CONSTASCII_USTRINGPARAM( "row index is invalid" ) ), *this );
+ OUString( "row index is invalid" ), *this );
}
void AccessibleBrowseBoxTableBase::ensureIsValidColumn( sal_Int32 nColumn )
@@ -324,7 +322,7 @@ void AccessibleBrowseBoxTableBase::ensureIsValidColumn( sal_Int32 nColumn )
{
if( nColumn >= implGetColumnCount() )
throw lang::IndexOutOfBoundsException(
- OUString( RTL_CONSTASCII_USTRINGPARAM("column index is invalid") ), *this );
+ OUString( "column index is invalid" ), *this );
}
void AccessibleBrowseBoxTableBase::ensureIsValidAddress(
@@ -340,7 +338,7 @@ void AccessibleBrowseBoxTableBase::ensureIsValidIndex( sal_Int32 nChildIndex )
{
if( nChildIndex >= implGetChildCount() )
throw lang::IndexOutOfBoundsException(
- OUString( RTL_CONSTASCII_USTRINGPARAM("child index is invalid") ), *this );
+ OUString( "child index is invalid" ), *this );
}
// ============================================================================