summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpoutput.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 09:08:09 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 09:08:09 +0000
commitc50f86b6e964fe3aa354c8d457c0d1504afd0ff5 (patch)
tree6de616ba478b5c1d58df3015a63a30e08d7dec74 /sc/inc/dpoutput.hxx
parentINTEGRATION: CWS rowlimit (1.2.338); FILE MERGED (diff)
downloadcore-c50f86b6e964fe3aa354c8d457c0d1504afd0ff5.tar.gz
core-c50f86b6e964fe3aa354c8d457c0d1504afd0ff5.zip
INTEGRATION: CWS rowlimit (1.2.338); FILE MERGED
2004/04/29 16:15:43 er 1.2.338.3: RESYNC: (1.2-1.3); FILE MERGED 2004/01/12 17:14:58 er 1.2.338.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:47:20 er 1.2.338.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx
Diffstat (limited to 'sc/inc/dpoutput.hxx')
-rw-r--r--sc/inc/dpoutput.hxx32
1 files changed, 18 insertions, 14 deletions
diff --git a/sc/inc/dpoutput.hxx b/sc/inc/dpoutput.hxx
index 6431d86851a2..28e2e1c5d62f 100644
--- a/sc/inc/dpoutput.hxx
+++ b/sc/inc/dpoutput.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dpoutput.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2004-04-13 12:22:15 $
+ * last change: $Author: obo $ $Date: 2004-06-04 10:08:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -78,6 +78,10 @@
#include "global.hxx"
#endif
+#ifndef SC_ADDRESS_HXX
+#include "address.hxx"
+#endif
+
class Rectangle;
class SvStream;
class ScDocument;
@@ -130,21 +134,21 @@ private:
long nColCount;
long nRowCount;
long nHeaderSize;
- USHORT nTabStartCol;
- USHORT nTabStartRow;
- USHORT nMemberStartCol;
- USHORT nMemberStartRow;
- USHORT nDataStartCol;
- USHORT nDataStartRow;
- USHORT nTabEndCol;
- USHORT nTabEndRow;
-
- void DataCell( USHORT nCol, USHORT nRow, USHORT nTab,
+ SCCOL nTabStartCol;
+ SCROW nTabStartRow;
+ SCCOL nMemberStartCol;
+ SCROW nMemberStartRow;
+ SCCOL nDataStartCol;
+ SCROW nDataStartRow;
+ SCCOL nTabEndCol;
+ SCROW nTabEndRow;
+
+ void DataCell( SCCOL nCol, SCROW nRow, SCTAB nTab,
const com::sun::star::sheet::DataResult& rData );
- void HeaderCell( USHORT nCol, USHORT nRow, USHORT nTab,
+ void HeaderCell( SCCOL nCol, SCROW nRow, SCTAB nTab,
const com::sun::star::sheet::MemberResult& rData,
BOOL bColHeader, long nLevel );
- void FieldCell( USHORT nCol, USHORT nRow, USHORT nTab, const String& rCaption,
+ void FieldCell( SCCOL nCol, SCROW nRow, SCTAB nTab, const String& rCaption,
BOOL bFrame = TRUE );
void CalcSizes();