diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:14:31 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:14:31 +0000 |
commit | 9996247f18c1e99974c77b8c259866e6fbb03385 (patch) | |
tree | f90a97c7aec53b0c2fa0f2be3f7d086fa1cb59e3 /sc | |
parent | 357b261b9006810f1db976309a39308e52857df6 (diff) |
INTEGRATION: CWS rowlimit (1.3.74); FILE MERGED
2004/01/16 17:39:47 er 1.3.74.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
2003/11/28 19:47:26 er 1.3.74.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/refdata.hxx | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx index 5c35786c49c0..3f03c8b38d76 100644 --- a/sc/inc/refdata.hxx +++ b/sc/inc/refdata.hxx @@ -2,9 +2,9 @@ * * $RCSfile: refdata.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hjs $ $Date: 2003-08-19 11:33:38 $ + * last change: $Author: obo $ $Date: 2004-06-04 10:14:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,6 +66,10 @@ #include "global.hxx" #endif +#ifndef SC_ADDRESS_HXX +#include "address.hxx" +#endif + // Ref-Flags for old (until release 3.1) documents @@ -89,12 +93,12 @@ struct OldSingleRefBools struct SingleRefData // Single reference (one address) into the sheet { - INT16 nCol; // Absolute values - INT16 nRow; - INT16 nTab; - INT16 nRelCol; // Values relative to the position - INT16 nRelRow; - INT16 nRelTab; + SCsCOL nCol; // Absolute values + SCsROW nRow; + SCsTAB nTab; + SCsCOL nRelCol; // Values relative to the position + SCsROW nRelRow; + SCsTAB nRelTab; union { |