diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-22 14:50:10 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-23 09:01:24 +0200 |
commit | 7b5fac67fd2441778cb9a6d2f529adc270998144 (patch) | |
tree | 93031caf680ccfe0b7a34d89822811ff172c55fa /basctl | |
parent | 75ddf3a22aa83d1b067085bd7132acab5a088856 (diff) |
loplugin:unusedfields in accessibility..comphelper
Change-Id: Ifb68d65fc3e48dd80e3ff2b7a4124468fdda1695
Reviewed-on: https://gerrit.libreoffice.org/39137
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/dlged/dlgedfunc.cxx | 6 | ||||
-rw-r--r-- | basctl/source/inc/dlgedfunc.hxx | 3 |
2 files changed, 1 insertions, 8 deletions
diff --git a/basctl/source/dlged/dlgedfunc.cxx b/basctl/source/dlged/dlgedfunc.cxx index 6260f8d885f2..3da94728b3bc 100644 --- a/basctl/source/dlged/dlgedfunc.cxx +++ b/basctl/source/dlged/dlgedfunc.cxx @@ -428,8 +428,7 @@ void DlgEdFuncInsert::MouseMove( const MouseEvent& rMEvt ) } DlgEdFuncSelect::DlgEdFuncSelect (DlgEditor& rParent_) : - DlgEdFunc(rParent_), - bMarkAction(false) + DlgEdFunc(rParent_) { } @@ -485,7 +484,6 @@ void DlgEdFuncSelect::MouseButtonDown( const MouseEvent& rMEvt ) { // select object rView.BegMarkObj(aMDPos); - bMarkAction = true; } } } @@ -523,8 +521,6 @@ bool DlgEdFuncSelect::MouseButtonUp( const MouseEvent& rMEvt ) } } - bMarkAction = false; - rWindow.SetPointer( rView.GetPreferredPointer( aPnt, &rWindow, nHitLog ) ); rWindow.ReleaseMouse(); diff --git a/basctl/source/inc/dlgedfunc.hxx b/basctl/source/inc/dlgedfunc.hxx index f4c64518bc03..063f2f269222 100644 --- a/basctl/source/inc/dlgedfunc.hxx +++ b/basctl/source/inc/dlgedfunc.hxx @@ -69,9 +69,6 @@ public: class DlgEdFuncSelect : public DlgEdFunc { -protected: - bool bMarkAction; - public: explicit DlgEdFuncSelect (DlgEditor& rParent); virtual ~DlgEdFuncSelect () override; |