summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/confuno.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 10:53:56 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 10:53:56 +0000
commitf68d60d336b1e62079b7554183bb589710570d72 (patch)
treea2f582d857dacc3579ee07f8f7a3cbf581bb7ce0 /sc/source/ui/unoobj/confuno.cxx
parentdddf8e55c4c67e6faf82d477b59de645a1e25e6a (diff)
INTEGRATION: CWS rowlimit (1.18.68); FILE MERGED
2004/01/15 14:28:20 er 1.18.68.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/source/ui/unoobj/confuno.cxx')
-rw-r--r--sc/source/ui/unoobj/confuno.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/unoobj/confuno.cxx b/sc/source/ui/unoobj/confuno.cxx
index 594027fd6c2b..f2ce5b823b5d 100644
--- a/sc/source/ui/unoobj/confuno.cxx
+++ b/sc/source/ui/unoobj/confuno.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: confuno.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: kz $ $Date: 2003-08-27 16:33:41 $
+ * last change: $Author: obo $ $Date: 2004-06-04 11:53:56 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -308,8 +308,8 @@ void SAL_CALL ScDocumentConfiguration::setPropertyValue(
if ( bUpdateHeights && !pDoc->IsImportingXML() )
{
// update automatic row heights and repaint
- USHORT nTabCount = pDoc->GetTableCount();
- for (USHORT nTab=0; nTab<nTabCount; nTab++)
+ SCTAB nTabCount = pDoc->GetTableCount();
+ for (SCTAB nTab=0; nTab<nTabCount; nTab++)
if ( !pDocShell->AdjustRowHeight( 0, MAXROW, nTab ) )
pDocShell->PostPaint( 0,0,nTab, MAXCOL,MAXROW,nTab, PAINT_GRID );
pDocShell->SetDocumentModified();