summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-08-01 12:12:03 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-08-07 10:49:18 +0200
commit3091af76760b298c2f8e16384c7838f54f814e24 (patch)
tree4e65408dccf2e834e9e820e7dada2c5fa75b1e72 /cui
parentbFirst means 1st vs 2nd column, and needs to alternate on each loop (diff)
downloadcore-3091af76760b298c2f8e16384c7838f54f814e24.tar.gz
core-3091af76760b298c2f8e16384c7838f54f814e24.zip
should toggle all others to false, not true
regression since... commit 5c32ba63163d9556ff89782a8074924cdf9dc554 Author: Caolán McNamara <caolanm@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@cib.de>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/multipat.cxx2
1 files changed, 1 insertions, 1 deletions
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);
}
}
}