[Libreoffice-commits] core.git: cui/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Aug 1 13:03:26 UTC 2019


 cui/source/dialogs/multipat.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a98afdd321439cfe376299eef42d9fd5c449355a
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 1 12:12:03 2019 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Aug 1 15:02:47 2019 +0200

    should toggle all others to false, not true
    
    regression since...
    
    commit 5c32ba63163d9556ff89782a8074924cdf9dc554
    Author: Caolán McNamara <caolanm at redhat.com>
    Date:   Thu Apr 4 14:30:03 2019 +0100
    
        weld OTableSubscriptionPage
    
    Change-Id: Iec3bec1b49af3e60b80301665ff3834f24f72222
    Reviewed-on: https://gerrit.libreoffice.org/76787
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx
index 72dbde1acec6..c81542b44840 100644
--- a/cui/source/dialogs/multipat.cxx
+++ b/cui/source/dialogs/multipat.cxx
@@ -65,7 +65,7 @@ void SvxMultiPathDialog::HandleEntryChecked(int nRow)
         for (int i = 0; i < nCount; ++i)
         {
             if (i != nRow)
-                m_xRadioLB->set_toggle(i, TRISTATE_TRUE, 0);
+                m_xRadioLB->set_toggle(i, TRISTATE_FALSE, 0);
         }
     }
 }


More information about the Libreoffice-commits mailing list