[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - sc/source

Justin Luth (via logerrit) logerrit at kemper.freedesktop.org
Tue Nov 10 13:28:56 UTC 2020


 sc/source/ui/miscdlgs/retypepassdlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 60c31f444ae566c19495bfff90b0216fc3f01091
Author:     Justin Luth <justin.luth at collabora.com>
AuthorDate: Sat Oct 31 15:36:44 2020 +0300
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Tue Nov 10 14:28:24 2020 +0100

    tdf#137897 scRetypePassInputDlg: re-allow password removal
    
    This weld-conversion logic error caused a LO 6.1 regression
    in commit 0e4f93e88bfae3489d2de84fc2febed100880628.
    
    -   m_pPasswordGrid->Disable();
    +   m_xPasswordGrid->set_sensitive(false);  //disable == false
    -   m_pBtnOk->Enable();
    +   m_xBtnOk->set_sensitive(false);         //enable == true
    
    The result is that attempting to remove the password did not
    enable the OK button, so it was impossible.
    
    Change-Id: I4067b2ec6b89e86b21968d33c8850cca6d067e71
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105049
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    (cherry picked from commit 9eeaff5fa9070bea685db8b6bbd2dfc1565756ac)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105060
    Tested-by: Andras Timar <andras.timar at collabora.com>
    Reviewed-by: Andras Timar <andras.timar at collabora.com>

diff --git a/sc/source/ui/miscdlgs/retypepassdlg.cxx b/sc/source/ui/miscdlgs/retypepassdlg.cxx
index 14b51656b01b..78a43059f3cd 100644
--- a/sc/source/ui/miscdlgs/retypepassdlg.cxx
+++ b/sc/source/ui/miscdlgs/retypepassdlg.cxx
@@ -403,7 +403,7 @@ IMPL_LINK_NOARG(ScRetypePassInputDlg, RadioBtnHdl, weld::ToggleButton&, void)
     else
     {
         m_xPasswordGrid->set_sensitive(false);
-        m_xBtnOk->set_sensitive(false);
+        m_xBtnOk->set_sensitive(true);
     }
 }
 


More information about the Libreoffice-commits mailing list