summaryrefslogtreecommitdiff
path: root/svx/source/table/accessibletableshape.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-25 08:02:28 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-25 08:02:28 +0000
commit4ef4e62d06a9d064240218381bdcf4c8c92eb863 (patch)
tree02b9d965ae5c777dac501e30a5bbe677c3803d42 /svx/source/table/accessibletableshape.cxx
parent559d3428f80348027d9bed57dc0cade264180ed0 (diff)
INTEGRATION: CWS aqua11y02 (1.3.164); FILE MERGED
2008/07/17 06:42:12 obr 1.3.164.1: #i90575# uninitialized member and endless loop fix
Diffstat (limited to 'svx/source/table/accessibletableshape.cxx')
-rw-r--r--svx/source/table/accessibletableshape.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/accessibletableshape.cxx b/svx/source/table/accessibletableshape.cxx
index 067f824982..ba7dd602c8 100644
--- a/svx/source/table/accessibletableshape.cxx
+++ b/svx/source/table/accessibletableshape.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: accessibletableshape.cxx,v $
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
* This file is part of OpenOffice.org.
*
@@ -175,7 +175,7 @@ void AccessibleTableShapeImpl::getColumnAndRow( sal_Int32 nChildIndex, sal_Int32
if( mxTable.is() )
{
const sal_Int32 nColumnCount = mxTable->getColumnCount();
- while( nChildIndex >= nColumnCount )
+ while( rnColumn >= nColumnCount )
{
rnRow++;
rnColumn -= nColumnCount;