diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-11-02 17:28:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-11-03 09:55:27 +0100 |
commit | 7bcee97c48026b8cc41b5c83dd43ed8aa1cd205d (patch) | |
tree | cfe64e06c22393cf43bf4f281092e7eea6c04684 /sc | |
parent | 3726c6e22d5cc9934f17cb73b3b5b5144eca2452 (diff) |
duplicate redundant lines
Change-Id: I5766aee2a07879d3064387f72a87c38ce431e9be
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105202
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/dbgui/validate.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/ui/dbgui/validate.cxx b/sc/source/ui/dbgui/validate.cxx index 74b9fff08716..c005f24375a7 100644 --- a/sc/source/ui/dbgui/validate.cxx +++ b/sc/source/ui/dbgui/validate.cxx @@ -390,10 +390,8 @@ ScTPValidationValue::ScTPValidationValue(weld::Container* pPage, weld::DialogCon ScTPValidationValue::~ScTPValidationValue() { m_xEdMin.reset(); - m_xEdMin.reset(); m_xEdMax.reset(); m_xBtnRef.reset(); - m_xEdMax.reset(); } void ScTPValidationValue::Init() @@ -406,8 +404,8 @@ void ScTPValidationValue::Init() m_xEdMin->SetGetFocusHdl( LINK( this, ScTPValidationValue, EditSetFocusHdl ) ); m_xEdMin->SetLoseFocusHdl( LINK( this, ScTPValidationValue, KillEditFocusHdl ) ); m_xEdMax->SetGetFocusHdl( LINK( this, ScTPValidationValue, EditSetFocusHdl ) ); - m_xBtnRef->SetLoseFocusHdl( LINK( this, ScTPValidationValue, KillButtonFocusHdl ) ); m_xEdMax->SetLoseFocusHdl( LINK( this, ScTPValidationValue, KillEditFocusHdl ) ); + m_xBtnRef->SetLoseFocusHdl( LINK( this, ScTPValidationValue, KillButtonFocusHdl ) ); m_xLbAllow->set_active( SC_VALIDDLG_ALLOW_ANY ); m_xLbValue->set_active( SC_VALIDDLG_DATA_EQUAL ); |