summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-03-04 11:56:45 +0100
committerMiklos Vajna <vmiklos@suse.cz>2012-09-14 08:02:15 +0000
commit19e1c3add521959f3c75dee9fe8243d1a1555be6 (patch)
tree70f15bd78b04f49b411f2bd8fe610e0b58fc00c3 /svtools
parentgridfixes: use long instead of sal_uInt32, to prevent pb on 64bit platforms (diff)
downloadcore-19e1c3add521959f3c75dee9fe8243d1a1555be6.tar.gz
core-19e1c3add521959f3c75dee9fe8243d1a1555be6.zip
gridfixes: fixed assertion
Change-Id: I89756b173835d0356fee7fbb166d1998bd0415ac Reviewed-on: https://gerrit.libreoffice.org/533 Reviewed-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/table/tablecontrol.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx
index 1726ea2b0753..945118521aee 100644
--- a/svtools/source/table/tablecontrol.cxx
+++ b/svtools/source/table/tablecontrol.cxx
@@ -222,7 +222,7 @@ namespace svt { namespace table
void TableControl::SelectRow( RowPos const i_rowIndex, bool const i_select )
{
ENSURE_OR_RETURN_VOID( ( i_rowIndex >= 0 ) && ( i_rowIndex < m_pImpl->getModel()->getRowCount() ),
- "TableControl::SelectRow: no control (anymore)!" );
+ "TableControl::SelectRow: invalid row index!" );
if ( i_select )
{