[Libreoffice-commits] core.git: Branch 'libreoffice-6-3' - cui/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Wed Aug 7 08:49:53 UTC 2019


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

New commits:
commit 3091af76760b298c2f8e16384c7838f54f814e24
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Aug 1 12:12:03 2019 +0100
Commit:     Michael Stahl <Michael.Stahl at cib.de>
CommitDate: Wed Aug 7 10:49:18 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/76790
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <Michael.Stahl at cib.de>

diff --git a/cui/source/dialogs/multipat.cxx b/cui/source/dialogs/multipat.cxx
index 6789e83c2a29..4a042fd37afa 100644
--- a/cui/source/dialogs/multipat.cxx
+++ b/cui/source/dialogs/multipat.cxx
@@ -67,7 +67,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