diff options
author | Andreas Martens <ama@openoffice.org> | 2001-09-10 14:02:49 +0000 |
---|---|---|
committer | Andreas Martens <ama@openoffice.org> | 2001-09-10 14:02:49 +0000 |
commit | 99f589482eae84a2a0a8160ed9d42919d17072dd (patch) | |
tree | 0b91a41fbbd7ca4d5d004a6d6eefb5494395fd81 /sw/inc/crstate.hxx | |
parent | 27fecb9d9626ac208acb86a380935f787753e2d5 (diff) |
Fix #90993#: Don't scroll too much
Diffstat (limited to 'sw/inc/crstate.hxx')
-rw-r--r-- | sw/inc/crstate.hxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sw/inc/crstate.hxx b/sw/inc/crstate.hxx index a78005049398..e731e3e9eea6 100644 --- a/sw/inc/crstate.hxx +++ b/sw/inc/crstate.hxx @@ -2,9 +2,9 @@ * * $RCSfile: crstate.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: ama $ $Date: 2001-01-30 09:32:57 $ + * last change: $Author: ama $ $Date: 2001-09-10 15:02:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -133,6 +133,7 @@ struct SwCrsrMoveState BOOL bSetInReadOnly :1; // ReadOnlyBereiche duerfen betreten werden BOOL bRealWidth :1; // Calculation of the width required BOOL b2Lines :1; // Check 2line portions and fill p2Lines + BOOL bNoScroll :1; // No scrolling of undersized textframes SwCrsrMoveState( CrsrMoveState eSt = MV_NONE ) : pFill( NULL ), @@ -146,7 +147,8 @@ struct SwCrsrMoveState bExactOnly( FALSE ), bSetInReadOnly( FALSE ), bRealWidth( FALSE ), - b2Lines( FALSE ) + b2Lines( FALSE ), + bNoScroll( FALSE ) {} SwCrsrMoveState( SwFillCrsrPos *pInitFill ) : pFill( pInitFill ), @@ -159,7 +161,8 @@ struct SwCrsrMoveState bExactOnly( FALSE ), bSetInReadOnly( FALSE ), bRealWidth( FALSE ), - b2Lines( FALSE ) + b2Lines( FALSE ), + bNoScroll( FALSE ) {} }; |