summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/tabopdlg.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 10:41:41 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 10:41:41 +0000
commit226572357e29a951e70a47c3055742b41ecbcefb (patch)
tree6167a811644fdeddf854bc596b7908e0e93f7d7e /sc/source/ui/inc/tabopdlg.hxx
parentb8803983e1bd5427372f39281f9fc67d0d67fba7 (diff)
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
Diffstat (limited to 'sc/source/ui/inc/tabopdlg.hxx')
-rw-r--r--sc/source/ui/inc/tabopdlg.hxx20
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;