diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:12:44 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:12:44 +0000 |
commit | 02520b5cf8278c5bafe305f4afdffd3b88ad1c9d (patch) | |
tree | dd83b2be06e8563f3ee8ca252d8a9da30e6f6633 /sc/inc | |
parent | 4f7888707c188c9021cbdaf8ae399a2aacc620ee (diff) |
INTEGRATION: CWS rowlimit (1.2.16); FILE MERGED
2004/03/05 17:11:41 er 1.2.16.2: #i1967# type correctness
2004/01/12 17:15:03 er 1.2.16.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/prnsave.hxx | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/sc/inc/prnsave.hxx b/sc/inc/prnsave.hxx index 30e47e293c97..9737ce7b31ad 100644 --- a/sc/inc/prnsave.hxx +++ b/sc/inc/prnsave.hxx @@ -2,9 +2,9 @@ * * $RCSfile: prnsave.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2003-12-01 09:48:43 $ + * last change: $Author: obo $ $Date: 2004-06-04 10:12:44 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,6 +62,10 @@ #ifndef SC_PRNSAVE_HXX #define SC_PRNSAVE_HXX +#ifndef SC_ADDRESS_HXX +#include "address.hxx" +#endif + #ifndef _SOLAR_H #include <tools/solar.h> #endif @@ -96,16 +100,16 @@ public: class ScPrintRangeSaver { - USHORT nTabCount; + SCTAB nTabCount; ScPrintSaverTab* pData; // Array public: - ScPrintRangeSaver( USHORT nCount ); + ScPrintRangeSaver( SCTAB nCount ); ~ScPrintRangeSaver(); - USHORT GetTabCount() const { return nTabCount; } - ScPrintSaverTab& GetTabData(USHORT nTab); - const ScPrintSaverTab& GetTabData(USHORT nTab) const; + SCTAB GetTabCount() const { return nTabCount; } + ScPrintSaverTab& GetTabData(SCTAB nTab); + const ScPrintSaverTab& GetTabData(SCTAB nTab) const; BOOL operator==( const ScPrintRangeSaver& rCmp ) const; }; |