summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xepage.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 09:46:11 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 09:46:11 +0000
commitc766e9d58a4b13196ae63b3699756f397b6daf52 (patch)
tree20dd13b7ab2f75adee6cd96a5e856bb9af499a64 /sc/source/filter/excel/xepage.cxx
parent949b110dbe79df717c7ffadcb06a6d85396b5ef2 (diff)
INTEGRATION: CWS rowlimit (1.3.16); FILE MERGED
2004/04/29 16:23:57 er 1.3.16.2: RESYNC: (1.3-1.4); FILE MERGED 2004/03/19 20:55:17 er 1.3.16.1: #i1967# type correctness
Diffstat (limited to 'sc/source/filter/excel/xepage.cxx')
-rw-r--r--sc/source/filter/excel/xepage.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/excel/xepage.cxx b/sc/source/filter/excel/xepage.cxx
index d924bd89588c..890a11c31c1f 100644
--- a/sc/source/filter/excel/xepage.cxx
+++ b/sc/source/filter/excel/xepage.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xepage.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2004-03-19 16:08:54 $
+ * last change: $Author: obo $ $Date: 2004-06-04 10:46:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -265,7 +265,7 @@ XclExpPageSettings::XclExpPageSettings( const XclExpRoot& rRoot ) :
XclExpRoot( rRoot )
{
ScDocument& rDoc = GetDoc();
- USHORT nScTab = GetCurrScTab();
+ SCTAB nScTab = GetCurrScTab();
if( SfxStyleSheetBase* pStyleSheet = GetStyleSheetPool().Find( rDoc.GetPageStyle( nScTab ), SFX_STYLE_FAMILY_PAGE ) )
{
@@ -345,10 +345,10 @@ XclExpPageSettings::XclExpPageSettings( const XclExpRoot& rRoot ) :
// *** page breaks ***
- for( USHORT nScRow = 1, nScMaxRow = GetMaxPos().Row(); nScRow <= nScMaxRow; ++nScRow )
+ for( SCROW nScRow = 1, nScMaxRow = GetMaxPos().Row(); nScRow <= nScMaxRow; ++nScRow )
if( rDoc.GetRowFlags( nScRow, nScTab ) & CR_MANUALBREAK )
maData.maHorPageBreaks.push_back( static_cast< sal_uInt16 >( nScRow ) );
- for( USHORT nScCol = 1, nScMaxCol = GetMaxPos().Col(); nScCol <= nScMaxCol; ++nScCol )
+ for( SCCOL nScCol = 1, nScMaxCol = GetMaxPos().Col(); nScCol <= nScMaxCol; ++nScCol )
if( rDoc.GetColFlags( nScCol, nScTab ) & CR_MANUALBREAK )
maData.maVerPageBreaks.push_back( static_cast< sal_uInt16 >( nScCol ) );
}