diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/tabopdlg.hxx | 20 |
1 files changed, 12 insertions, 8 deletions
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; |