From 226572357e29a951e70a47c3055742b41ecbcefb Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Fri, 4 Jun 2004 10:41:41 +0000 Subject: INTEGRATION: CWS rowlimit (1.3.310); FILE MERGED 2004/02/04 11:28:18 er 1.3.310.3: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:37 er 1.3.310.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2003/11/28 19:48:02 er 1.3.310.1: #i1967# move ScAddress, ScRange from global.hxx to address.hxx --- sc/source/ui/inc/tabopdlg.hxx | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'sc') diff --git a/sc/source/ui/inc/tabopdlg.hxx b/sc/source/ui/inc/tabopdlg.hxx index 5a5b61bba9ef..37da63e87eeb 100644 --- a/sc/source/ui/inc/tabopdlg.hxx +++ b/sc/source/ui/inc/tabopdlg.hxx @@ -2,9 +2,9 @@ * * $RCSfile: tabopdlg.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: dr $ $Date: 2002-03-13 11:43:13 $ + * last change: $Author: obo $ $Date: 2004-06-04 11:41:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,6 +74,10 @@ #include "global.hxx" #endif +#ifndef SC_ADDRESS_HXX +#include "address.hxx" +#endif + #ifndef SC_ANYREFDG_HXX #include "anyrefdg.hxx" #endif @@ -99,7 +103,7 @@ class ScTabOpDlg : public ScAnyRefDlg public: ScTabOpDlg( SfxBindings* pB, SfxChildWindow* pCW, Window* pParent, ScDocument* pDocument, - const ScRefTripel& rCursorPos ); + const ScRefAddress& rCursorPos ); ~ScTabOpDlg(); virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ); @@ -126,13 +130,13 @@ private: CancelButton aBtnCancel; HelpButton aBtnHelp; - ScRefTripel theFormulaCell; - ScRefTripel theFormulaEnd; - ScRefTripel theRowCell; - ScRefTripel theColCell; + ScRefAddress theFormulaCell; + ScRefAddress theFormulaEnd; + ScRefAddress theRowCell; + ScRefAddress theColCell; ScDocument* pDoc; - const USHORT nCurTab; + const SCTAB nCurTab; ScRefEdit* pEdActive; BOOL bDlgLostFocus; const String errMsgNoFormula; -- cgit