summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/editable.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 10:33:11 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 10:33:11 +0000
commitf09ef2d844b08ec7cf93338318afed8956c79064 (patch)
tree65caa93cb106669ae6fddb4ff519c212d5647c15 /sc/source/ui/inc/editable.hxx
parentd7db0674bf4a8c5d95a218d56e31680a5758f027 (diff)
INTEGRATION: CWS rowlimit (1.1.302); FILE MERGED
2004/01/13 20:04:15 er 1.1.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/source/ui/inc/editable.hxx')
-rw-r--r--sc/source/ui/inc/editable.hxx20
1 files changed, 12 insertions, 8 deletions
diff --git a/sc/source/ui/inc/editable.hxx b/sc/source/ui/inc/editable.hxx
index 41c0e35830ed..4e892e95c2eb 100644
--- a/sc/source/ui/inc/editable.hxx
+++ b/sc/source/ui/inc/editable.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editable.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: nn $ $Date: 2002-11-20 14:32:18 $
+ * last change: $Author: obo $ $Date: 2004-06-04 11:33:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,10 @@
#ifndef SC_EDITABLE_HXX
#define SC_EDITABLE_HXX
+#ifndef SC_ADDRESS_HXX
+#include "address.hxx"
+#endif
+
#ifndef _SOLAR_H
#include <tools/solar.h>
#endif
@@ -82,12 +86,12 @@ public:
ScEditableTester();
// calls TestBlock
- ScEditableTester( ScDocument* pDoc, USHORT nTab,
- USHORT nStartCol, USHORT nStartRow, USHORT nEndCol, USHORT nEndRow );
+ ScEditableTester( ScDocument* pDoc, SCTAB nTab,
+ SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
// calls TestSelectedBlock
ScEditableTester( ScDocument* pDoc,
- USHORT nStartCol, USHORT nStartRow, USHORT nEndCol, USHORT nEndRow,
+ SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
const ScMarkData& rMark );
// calls TestRange
@@ -103,10 +107,10 @@ public:
// Several calls to the Test... methods check if *all* of the ranges
// are editable. For several independent checks, Reset() has to be used.
- void TestBlock( ScDocument* pDoc, USHORT nTab,
- USHORT nStartCol, USHORT nStartRow, USHORT nEndCol, USHORT nEndRow );
+ void TestBlock( ScDocument* pDoc, SCTAB nTab,
+ SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
void TestSelectedBlock( ScDocument* pDoc,
- USHORT nStartCol, USHORT nStartRow, USHORT nEndCol, USHORT nEndRow,
+ SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
const ScMarkData& rMark );
void TestRange( ScDocument* pDoc, const ScRange& rRange );
void TestSelection( ScDocument* pDoc, const ScMarkData& rMark );