summaryrefslogtreecommitdiffstats
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
commitca514999938d87f1e5b6261b1a40fdd721cae38d (patch)
tree3df3c6f59668a39b68ebe7d3e5fe67374dd6e8b9 /svx/source/table/accessibletableshape.cxx
parentINTEGRATION: CWS aqua11y02 (1.3.162); FILE MERGED (diff)
downloadcore-ca514999938d87f1e5b6261b1a40fdd721cae38d.tar.gz
core-ca514999938d87f1e5b6261b1a40fdd721cae38d.zip
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 a2a2e13900de..89e18137eeb0 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;