diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:18:14 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 10:18:14 +0000 |
commit | caa4a8f311aa9b842f9a2ea6adf7f48f1d29f6dc (patch) | |
tree | ec522aa284fa42250cc6c169c8d97da48a395620 /sc/source | |
parent | a6daf754d33dd1f04b26cec4a32fb60cf0b3295f (diff) |
INTEGRATION: CWS rowlimit (1.34.14); FILE MERGED
2004/03/15 17:23:23 er 1.34.14.4: RESYNC: (1.36-1.37); FILE MERGED
2004/02/11 14:00:06 er 1.34.14.3: RESYNC: (1.35-1.36); FILE MERGED
2004/01/21 14:39:37 er 1.34.14.2: RESYNC: (1.34-1.35); FILE MERGED
2004/01/14 13:34:05 er 1.34.14.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/ui/app/inputwin.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index d7e6f03cdac4..2752d8814c28 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -2,9 +2,9 @@ * * $RCSfile: inputwin.cxx,v $ * - * $Revision: 1.38 $ + * $Revision: 1.39 $ * - * last change: $Author: rt $ $Date: 2004-05-07 15:57:40 $ + * last change: $Author: obo $ $Date: 2004-06-04 11:18:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -299,12 +299,12 @@ sal_Bool ScInputWindow::UseSubTotal(ScRangeList* pRangeList) const const ScRange* pRange = pRangeList->GetObject( nRangeIndex ); if( pRange ) { - sal_uInt16 nTabEnd(pRange->aEnd.Tab()); - sal_uInt16 nTab(pRange->aStart.Tab()); + SCTAB nTabEnd(pRange->aEnd.Tab()); + SCTAB nTab(pRange->aStart.Tab()); while (!bSubTotal && nTab <= nTabEnd) { - sal_uInt16 nRowEnd(pRange->aEnd.Row()); - sal_uInt16 nRow(pRange->aStart.Row()); + SCROW nRowEnd(pRange->aEnd.Row()); + SCROW nRow(pRange->aStart.Row()); while (!bSubTotal && nRow <= nRowEnd) { if (pDoc->IsFiltered(nRow, nTab)) |