[Libreoffice-commits] .: sw/source

Takeshi Abe tabe at fixedpoint.jp
Fri Feb 1 05:47:00 PST 2013


 sw/source/ui/docvw/edtwin.cxx |    4 +---
 sw/source/ui/inc/edtwin.hxx   |    4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

New commits:
commit 6bf2f6664573e734cc54582aae37838795cccb1e
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date:   Fri Feb 1 18:15:43 2013 +0900

    Drop useless member variables
    
    Change-Id: Ib933d150d5d82383d23619857b2797a63be28626

diff --git a/sw/source/ui/docvw/edtwin.cxx b/sw/source/ui/docvw/edtwin.cxx
index 78c6491..34d30e3 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 b95539e..2d71f5c 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


More information about the Libreoffice-commits mailing list