diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-05-06 14:41:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-05-06 21:21:00 +0200 |
commit | 229ae93385e28e0dee407d9386809fa0595578bc (patch) | |
tree | f5ddacc0bb74eb08ea5c0ba464a0c8a07b651f93 /toolkit | |
parent | 7223d7312368bf9c917ef055830a3217eb49f9fd (diff) |
Resolves: tdf#132581 allow disabling the auto-group RadioButton feature
the older way of doing things is to dig around contiguous radiobuttons to see
what is part of the group, while the contemporary one is to explicitly use
group() to set the members. A problem of the legacy way of doing it is that the
results during setup and teardown of a collection of radiobuttons can be
misleading.
Change-Id: I6c590d0fb6fc6db3f5e5ba4397a62930a5c8f3f0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93567
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxtoolkit.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx index 77935fb7ac41..d39a70659161 100644 --- a/toolkit/source/awt/vclxtoolkit.cxx +++ b/toolkit/source/awt/vclxtoolkit.cxx @@ -1599,7 +1599,7 @@ vcl::Window* VCLXToolkit::ImplCreateWindow( VCLXWindow** ppNewComp, *ppNewComp = new VCLXMessageBox; break; case WindowType::RADIOBUTTON: - pNewWindow = VclPtr<RadioButton>::Create( pParent, nWinBits ); + pNewWindow = VclPtr<RadioButton>::Create(pParent, false, nWinBits); *ppNewComp = new VCLXRadioButton; // by default, disable RadioCheck |