summaryrefslogtreecommitdiff
path: root/sc/inc/editutil.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 09:09:19 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 09:09:19 +0000
commit90faf861d3a321c644f14c8dc7bb7ce815c5b053 (patch)
tree541c1b15affba402f9bc2d7272e59606d9a61de5 /sc/inc/editutil.hxx
parentfacde0dcffb499b2ffb30c5cceb1305a0a86c8ad (diff)
INTEGRATION: CWS rowlimit (1.5.302); FILE MERGED
2004/01/16 17:39:45 er 1.5.302.2: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short 2004/01/12 17:14:59 er 1.5.302.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
Diffstat (limited to 'sc/inc/editutil.hxx')
-rw-r--r--sc/inc/editutil.hxx16
1 files changed, 10 insertions, 6 deletions
diff --git a/sc/inc/editutil.hxx b/sc/inc/editutil.hxx
index e587f1cbe136..be75248dfdb8 100644
--- a/sc/inc/editutil.hxx
+++ b/sc/inc/editutil.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: editutil.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: nn $ $Date: 2002-09-23 14:12:33 $
+ * last change: $Author: obo $ $Date: 2004-06-04 10:09:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,6 +63,10 @@
#define SC_EDITUTIL_HXX
+#ifndef SC_ADDRESS_HXX
+#include "address.hxx"
+#endif
+
#ifndef _MyEDITENG_HXX //autogen
#include <svx/editeng.hxx>
#endif
@@ -95,9 +99,9 @@ class ScPatternAttr;
class ScEditUtil
{
ScDocument* pDoc;
- USHORT nCol;
- USHORT nRow;
- USHORT nTab;
+ SCCOL nCol;
+ SCROW nRow;
+ SCTAB nTab;
Point aScrPos;
OutputDevice* pDev; // MapMode muss eingestellt sein
double nPPTX;
@@ -112,7 +116,7 @@ public:
static String GetSpaceDelimitedString( const EditEngine& rEngine );
public:
- ScEditUtil( ScDocument* pDocument, USHORT nX, USHORT nY, USHORT nZ,
+ ScEditUtil( ScDocument* pDocument, SCCOL nX, SCROW nY, SCTAB nZ,
const Point& rScrPosPixel,
OutputDevice* pDevice, double nScaleX, double nScaleY,
const Fraction& rX, const Fraction& rY ) :