diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-02-01 18:15:43 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-02-01 22:46:19 +0900 |
commit | 6bf2f6664573e734cc54582aae37838795cccb1e (patch) | |
tree | d19baa46cc192b7a3fc27fd2340eb6da0d15d643 /sw | |
parent | f337125b41ed8aef52d2847cce258c3202b83e0a (diff) |
Drop useless member variables
Change-Id: Ib933d150d5d82383d23619857b2797a63be28626
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/docvw/edtwin.cxx | 4 | ||||
-rw-r--r-- | sw/source/ui/inc/edtwin.hxx | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx index 78c6491f9e67..34d30e37be8b 100644 --- a/sw/source/ui/docvw/edtwin.cxx +++ b/sw/source/ui/docvw/edtwin.cxx @@ -1799,7 +1799,6 @@ KEYINPUT_CHECKTABLE_INSDEL: eKeyState = KS_End; bTblInsDelMode = sal_True; bTblIsInsMode = sal_False; - bTblIsColMode = sal_True; aKeyInputTimer.Start(); bStopKeyInputTimer = false; eAutoCompleteAction = ACA_NoOp; @@ -1811,7 +1810,6 @@ KEYINPUT_CHECKTABLE_INSDEL: eKeyState = KS_End; bTblInsDelMode = sal_True; bTblIsInsMode = sal_True; - bTblIsColMode = sal_True; aKeyInputTimer.Start(); bStopKeyInputTimer = false; eAutoCompleteAction = ACA_NoOp; @@ -4798,7 +4796,7 @@ SwEditWin::SwEditWin(Window *pParent, SwView &rMyView): EnableChildTransparentMode(); SetDialogControlFlags( WINDOW_DLGCTRL_RETURN | WINDOW_DLGCTRL_WANTFOCUS ); - bLinkRemoved = bMBPressed = bInsDraw = bInsFrm = + bMBPressed = bInsDraw = bInsFrm = bIsInDrag = bOldIdle = bOldIdleSet = bChainMode = bWasShdwCrsr = sal_False; // initially use the input language bUseInputLanguage = sal_True; diff --git a/sw/source/ui/inc/edtwin.hxx b/sw/source/ui/inc/edtwin.hxx index b95539e8942c..2d71f5c69b9d 100644 --- a/sw/source/ui/inc/edtwin.hxx +++ b/sw/source/ui/inc/edtwin.hxx @@ -118,8 +118,7 @@ friend void PageNumNotify( ViewShell* pVwSh, sal_uInt16 eBezierMode; sal_uInt16 nInsFrmColCount; // column number for interactive frame SdrObjKind eDrawMode; - sal_Bool bLinkRemoved : 1, - bMBPressed : 1, + sal_Bool bMBPressed : 1, bInsDraw : 1, bInsFrm : 1, bIsInMove : 1, @@ -128,7 +127,6 @@ friend void PageNumNotify( ViewShell* pVwSh, bOldIdleSet : 1, // during QeueryDrop bTblInsDelMode : 1, // bTblIsInsMode : 1, // - bTblIsColMode : 1, // bChainMode : 1, // connect frames bWasShdwCrsr : 1, // ShadowCrsr was on in MouseButtonDown bLockInput : 1, // lock while calc panel is active |