diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:12:59 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-06-04 09:12:59 +0000 |
commit | 3a6fe7396432c84593350edccebda237bdda6f66 (patch) | |
tree | f1cb397a6dac47870b869eca7f3d023fac947c11 /sc/inc/rangelst.hxx | |
parent | 02520b5cf8278c5bafe305f4afdffd3b88ad1c9d (diff) |
INTEGRATION: CWS rowlimit (1.2.334); FILE MERGED
2004/01/12 17:15:04 er 1.2.334.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
2003/11/28 19:47:25 er 1.2.334.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx
Diffstat (limited to 'sc/inc/rangelst.hxx')
-rw-r--r-- | sc/inc/rangelst.hxx | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/sc/inc/rangelst.hxx b/sc/inc/rangelst.hxx index fe73dfd4857a..d07687750161 100644 --- a/sc/inc/rangelst.hxx +++ b/sc/inc/rangelst.hxx @@ -2,9 +2,9 @@ * * $RCSfile: rangelst.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dr $ $Date: 2001-04-24 14:44:14 $ + * last change: $Author: obo $ $Date: 2004-06-04 10:12:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -66,6 +66,13 @@ #include "global.hxx" #endif +#ifndef SC_ADDRESS_HXX +#include "address.hxx" +#endif +#ifndef _SOLAR_H +#include <tools/solar.h> +#endif + class ScDocument; typedef ScRange* ScRangePtr; @@ -90,7 +97,7 @@ public: void Join( const ScRange&, BOOL bIsInList = FALSE ); BOOL UpdateReference( UpdateRefMode, ScDocument*, const ScRange& rWhere, - short nDx, short nDy, short nDz ); + SCsCOL nDx, SCsROW nDy, SCsTAB nDz ); ScRange* Find( const ScAddress& ) const; ScRange* Find( const ScRange& ) const; BOOL Load( SvStream&, USHORT nVer ); @@ -129,7 +136,7 @@ public: void Join( const ScRangePair&, BOOL bIsInList = FALSE ); BOOL UpdateReference( UpdateRefMode, ScDocument*, const ScRange& rWhere, - short nDx, short nDy, short nDz ); + SCsCOL nDx, SCsROW nDy, SCsTAB nDz ); ScRangePair* Find( const ScAddress& ) const; ScRangePair* Find( const ScRange& ) const; BOOL Load( SvStream&, USHORT nVer ); |