diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-08-01 12:12:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-08-01 15:02:47 +0200 |
commit | a98afdd321439cfe376299eef42d9fd5c449355a (patch) | |
tree | 5fb5fa44c087b18adfe09ec0fbc3c4e6ff0e8095 /cui | |
parent | 2207269a84c7c9920af3385b837ce67978c720b4 (diff) |
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/76787
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/multipat.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } } |