diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-12 13:37:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-12 18:29:29 +0200 |
commit | 3fe3bd8a90d6dc53b05b9236185af3916fc5375d (patch) | |
tree | 3b6bb34f0b8c54192bfc66377011baa911af5c05 /sc | |
parent | 3f42a9cf0c35d483206dfbb8ebf8786ada44bc60 (diff) |
loplugin:unusedfields
Change-Id: I321c8eefdc43979ef5fd3774c7094ac0dbcac417
Reviewed-on: https://gerrit.libreoffice.org/70657
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/simpref.hxx | 1 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/simpref.cxx | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/sc/source/ui/inc/simpref.hxx b/sc/source/ui/inc/simpref.hxx index c3a9184c1099..a69330fbf55b 100644 --- a/sc/source/ui/inc/simpref.hxx +++ b/sc/source/ui/inc/simpref.hxx @@ -35,7 +35,6 @@ private: ScRange theCurArea; bool bCloseFlag; - bool bAutoReOpen; bool bCloseOnButtonUp; bool bSingleCell; bool bMultiSelection; diff --git a/sc/source/ui/miscdlgs/simpref.cxx b/sc/source/ui/miscdlgs/simpref.cxx index 362c4e1382ae..6260b51bdfb3 100644 --- a/sc/source/ui/miscdlgs/simpref.cxx +++ b/sc/source/ui/miscdlgs/simpref.cxx @@ -23,7 +23,6 @@ ScSimpleRefDlg::ScSimpleRefDlg(SfxBindings* pB, SfxChildWindow* pCW, weld::Window* pParent) : ScAnyRefDlgController(pB, pCW, pParent, "modules/scalc/ui/simplerefdialog.ui", "SimpleRefDialog") - , bAutoReOpen(true) , bCloseOnButtonUp(false) , bSingleCell(false) , bMultiSelection(false) @@ -159,7 +158,6 @@ void ScSimpleRefDlg::RefInputDone( bool bForced) IMPL_LINK_NOARG(ScSimpleRefDlg, OkBtnHdl, weld::Button&, void) { - bAutoReOpen=false; OUString aResult=m_xEdAssign->GetText(); aCloseHdl.Call(&aResult); Link<const OUString&,void> aUnoLink = aDoneHdl; // stack var because this is deleted in DoClose @@ -169,7 +167,6 @@ IMPL_LINK_NOARG(ScSimpleRefDlg, OkBtnHdl, weld::Button&, void) IMPL_LINK_NOARG(ScSimpleRefDlg, CancelBtnHdl, weld::Button&, void) { - bAutoReOpen=false; OUString aResult=m_xEdAssign->GetText(); aCloseHdl.Call(nullptr); Link<const OUString&,void> aUnoLink = aAbortedHdl; // stack var because this is deleted in DoClose |