summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-06-04 10:40:14 +0000
committerOliver Bolte <obo@openoffice.org>2004-06-04 10:40:14 +0000
commitd121c908b042ab5b29d7580b2d8c507e88a2f0de (patch)
treea3062079f81be89a73d91f1deeeac0e06b257592
parent12619aaaa0df931430f4a9f9d296f9e1a0c7fed4 (diff)
INTEGRATION: CWS rowlimit (1.1.1.1.346); FILE MERGED
2004/02/26 19:15:54 jmarmion 1.1.1.1.346.3: #i1967# setp 5 changes. 2004/02/04 11:28:17 er 1.1.1.1.346.2: #i1967# replace ScTripel,ScRefTripel with ScAddress,ScRefAddress; get rid of some warnings 2004/01/13 20:04:35 er 1.1.1.1.346.1: #i1967# SCCOL,SCROW,SCTAB replace USHORT; SCsCOL,SCsROW,SCsTAB replace short
-rw-r--r--sc/source/ui/inc/select.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/ui/inc/select.hxx b/sc/source/ui/inc/select.hxx
index 5de771e07..c96110514 100644
--- a/sc/source/ui/inc/select.hxx
+++ b/sc/source/ui/inc/select.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: select.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:45:00 $
+ * last change: $Author: obo $ $Date: 2004-06-04 11:40:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -95,7 +95,7 @@ private:
BOOL bAnchor;
BOOL bStarted;
- ScTripel aAnchorPos;
+ ScAddress aAnchorPos;
ScSplitPos GetWhich();
@@ -104,7 +104,7 @@ public:
void SetSelectionEngine( ScViewSelectionEngine* pSelEngine );
- void SetAnchor( USHORT nPosX, USHORT nPosY );
+ void SetAnchor( SCCOL nPosX, SCROW nPosY );
void SetAnchorFlag( BOOL bSet );
virtual void BeginDrag();
@@ -115,7 +115,7 @@ public:
virtual void DeselectAtPoint( const Point& rPointPixel );
virtual void DeselectAll();
- BOOL SetCursorAtCell( short nPosX, short nPosY, BOOL bScroll );
+ BOOL SetCursorAtCell( SCsCOL nPosX, SCsROW nPosY, BOOL bScroll );
};
@@ -130,7 +130,7 @@ private:
ScSplitPos eWhich;
BOOL bAnchor;
- USHORT nCursorPos;
+ SCCOLROW nCursorPos;
public:
ScHeaderFunctionSet( ScViewData* pNewViewData );