summaryrefslogtreecommitdiff
path: root/sw/inc/crstate.hxx
diff options
context:
space:
mode:
authorAndreas Martens <ama@openoffice.org>2000-11-28 13:28:24 +0000
committerAndreas Martens <ama@openoffice.org>2000-11-28 13:28:24 +0000
commit459135323c861fd63c9d95d92ab30c0fdbb18210 (patch)
tree2742d649f449d5cd0eb857ff9b680e6b69416523 /sw/inc/crstate.hxx
parentdc65d6a815c039d6f0aef2045e24608bd4db3367 (diff)
#80512#: Input cursor in overwrite mode
Diffstat (limited to 'sw/inc/crstate.hxx')
-rw-r--r--sw/inc/crstate.hxx11
1 files changed, 7 insertions, 4 deletions
diff --git a/sw/inc/crstate.hxx b/sw/inc/crstate.hxx
index 04154c68d2cb..ecea83656a9b 100644
--- a/sw/inc/crstate.hxx
+++ b/sw/inc/crstate.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: crstate.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: ama $ $Date: 2000-10-20 14:45:47 $
+ * last change: $Author: ama $ $Date: 2000-11-28 14:26:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,6 +122,7 @@ struct SwCrsrMoveState
// GetCntntPos laufen.
BOOL bFillRet :1; // wird nur im FillModus temp. genutzt
BOOL bSetInReadOnly :1; // ReadOnlyBereiche duerfen betreten werden
+ BOOL bRealWidth :1; // Calculation of the width required
SwCrsrMoveState( CrsrMoveState eSt = MV_NONE ) :
pFill( NULL ),
@@ -132,7 +133,8 @@ struct SwCrsrMoveState
bPosCorr( FALSE ),
bFtnNoInfo( FALSE ),
bExactOnly( FALSE ),
- bSetInReadOnly( FALSE )
+ bSetInReadOnly( FALSE ),
+ bRealWidth( FALSE )
{}
SwCrsrMoveState( SwFillCrsrPos *pInitFill ) :
pFill( pInitFill ),
@@ -143,7 +145,8 @@ struct SwCrsrMoveState
bPosCorr( FALSE ),
bFtnNoInfo( FALSE ),
bExactOnly( FALSE ),
- bSetInReadOnly( FALSE )
+ bSetInReadOnly( FALSE ),
+ bRealWidth( FALSE )
{}
};