diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-01-20 14:22:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-01-21 18:08:33 +0100 |
commit | b1617acde182d1683bdfb529794d7456f8b4bf6d (patch) | |
tree | d81821699a32c0134f87a658be38e3309fa6fbcf /include | |
parent | 5e6e87f1556e484c4d4be7e3b01ef668ab602f3c (diff) |
drop RadioButton arg defaults
the nBits arg in builder.cxx was in the wrong place
Change-Id: Id4d0dd6919444cb39cf0d9e593f46d324f343a31
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109714
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/toolkit/button.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/toolkit/button.hxx b/include/vcl/toolkit/button.hxx index 1a294d12f016..58000cf7b705 100644 --- a/include/vcl/toolkit/button.hxx +++ b/include/vcl/toolkit/button.hxx @@ -220,7 +220,7 @@ public: true is fairly straightforward, false leads to trick situations and is the legacy case */ - explicit RadioButton(vcl::Window* pParent, bool bUsesExplicitGroup = true, WinBits nWinStyle = 0); + explicit RadioButton(vcl::Window* pParent, bool bUsesExplicitGroup, WinBits nWinStyle); virtual ~RadioButton() override; virtual void dispose() override; |