summaryrefslogtreecommitdiff
path: root/sw/inc/crstate.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-04-07 11:41:46 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-04-07 11:41:46 +0000
commit1ba53328bec160c1066ecd372ce93131f361ad38 (patch)
tree4740ef84a582e2a2959614ace85b6601c75d8233 /sw/inc/crstate.hxx
parentc66e5da79436abf51aec614a50cbbd3488337754 (diff)
INTEGRATION: CWS swnum02 (1.11.358); FILE MERGED
2004/03/03 14:04:49 hbrinkm 1.11.358.2: #i23726# 2004/02/20 12:43:03 hbrinkm 1.11.358.1: #i23726#
Diffstat (limited to 'sw/inc/crstate.hxx')
-rw-r--r--sw/inc/crstate.hxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/sw/inc/crstate.hxx b/sw/inc/crstate.hxx
index cd6ce636d66e..b5154c8ee30c 100644
--- a/sw/inc/crstate.hxx
+++ b/sw/inc/crstate.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: crstate.hxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: vg $ $Date: 2003-04-17 10:08:37 $
+ * last change: $Author: hr $ $Date: 2004-04-07 12:41:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -189,6 +189,8 @@ struct SwCrsrMoveState
BOOL bPosMatchesBounds :1; // GetCrsrOfst should not return the next
// position if screen position is inside second
// have of bound rect
+ BOOL bInNumPortion :1; // point is in number portion #i23726#
+ int nInNumPostionOffset; // distance from number portion's start
SwCrsrMoveState( CrsrMoveState eSt = MV_NONE ) :
pFill( NULL ),
@@ -206,7 +208,9 @@ struct SwCrsrMoveState
bRealWidth( FALSE ),
b2Lines( FALSE ),
bNoScroll( FALSE ),
- bPosMatchesBounds( FALSE )
+ bPosMatchesBounds( FALSE ),
+ bInNumPortion(FALSE), // #i26726#
+ nInNumPostionOffset(0) // #i26726#
{}
SwCrsrMoveState( SwFillCrsrPos *pInitFill ) :
pFill( pInitFill ),
@@ -223,7 +227,9 @@ struct SwCrsrMoveState
bRealWidth( FALSE ),
b2Lines( FALSE ),
bNoScroll( FALSE ),
- bPosMatchesBounds( FALSE )
+ bPosMatchesBounds( FALSE ),
+ bInNumPortion(FALSE), // #i23726#
+ nInNumPostionOffset(0) // #i23726#
{}
};