|
|
502fc9 |
From 81618bd69088436eb60fd07b944effb178d788ae Mon Sep 17 00:00:00 2001
|
|
|
502fc9 |
From: Justin Luth <justin.luth@collabora.com>
|
|
|
502fc9 |
Date: Sat, 31 Oct 2020 15:36:44 +0300
|
|
|
502fc9 |
Subject: [PATCH 6/8] tdf#137897 scRetypePassInputDlg: re-allow password
|
|
|
502fc9 |
removal
|
|
|
502fc9 |
MIME-Version: 1.0
|
|
|
502fc9 |
Content-Type: text/plain; charset=UTF-8
|
|
|
502fc9 |
Content-Transfer-Encoding: 8bit
|
|
|
502fc9 |
|
|
|
502fc9 |
This weld-conversion logic error caused a LO 6.1 regression
|
|
|
502fc9 |
in commit 0e4f93e88bfae3489d2de84fc2febed100880628.
|
|
|
502fc9 |
|
|
|
502fc9 |
- m_pPasswordGrid->Disable();
|
|
|
502fc9 |
+ m_xPasswordGrid->set_sensitive(false); //disable == false
|
|
|
502fc9 |
- m_pBtnOk->Enable();
|
|
|
502fc9 |
+ m_xBtnOk->set_sensitive(false); //enable == true
|
|
|
502fc9 |
|
|
|
502fc9 |
The result is that attempting to remove the password did not
|
|
|
502fc9 |
enable the OK button, so it was impossible.
|
|
|
502fc9 |
|
|
|
502fc9 |
Change-Id: I4067b2ec6b89e86b21968d33c8850cca6d067e71
|
|
|
502fc9 |
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105049
|
|
|
502fc9 |
Tested-by: Jenkins
|
|
|
502fc9 |
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
|
|
|
502fc9 |
(cherry picked from commit 9eeaff5fa9070bea685db8b6bbd2dfc1565756ac)
|
|
|
502fc9 |
---
|
|
|
502fc9 |
sc/source/ui/miscdlgs/retypepassdlg.cxx | 2 +-
|
|
|
502fc9 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
502fc9 |
|
|
|
502fc9 |
diff --git a/sc/source/ui/miscdlgs/retypepassdlg.cxx b/sc/source/ui/miscdlgs/retypepassdlg.cxx
|
|
|
502fc9 |
index 84f8ef182b54..fa31ea77e392 100644
|
|
|
502fc9 |
--- a/sc/source/ui/miscdlgs/retypepassdlg.cxx
|
|
|
502fc9 |
+++ b/sc/source/ui/miscdlgs/retypepassdlg.cxx
|
|
|
502fc9 |
@@ -372,7 +372,7 @@ IMPL_LINK_NOARG(ScRetypePassInputDlg, RadioBtnHdl, weld::ToggleButton&, void)
|
|
|
502fc9 |
else
|
|
|
502fc9 |
{
|
|
|
502fc9 |
m_xPasswordGrid->set_sensitive(false);
|
|
|
502fc9 |
- m_xBtnOk->set_sensitive(false);
|
|
|
502fc9 |
+ m_xBtnOk->set_sensitive(true);
|
|
|
502fc9 |
}
|
|
|
502fc9 |
}
|
|
|
502fc9 |
|
|
|
502fc9 |
--
|
|
|
502fc9 |
2.28.0
|
|
|
502fc9 |
|