diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-11 08:42:56 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-11 09:48:18 +0200 |
commit | 8dc5f89346fa0f6820d5fd0b1ad4092168967f12 (patch) | |
tree | f3742c90480393565c89ffdd0cb1cee639c65d0d /vcl/source/window/dlgctrl.cxx | |
parent | 286dfc2a720ea8bd6b26c10126202fa25a112e0f (diff) |
loplugin: defaultparams
Change-Id: I79a889c68e91712d2abdacc559c78813f730e623
Diffstat (limited to 'vcl/source/window/dlgctrl.cxx')
-rw-r--r-- | vcl/source/window/dlgctrl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/dlgctrl.cxx b/vcl/source/window/dlgctrl.cxx index 3039e78a2efe..cf8ac9991ef7 100644 --- a/vcl/source/window/dlgctrl.cxx +++ b/vcl/source/window/dlgctrl.cxx @@ -564,7 +564,7 @@ namespace bool nextInGroup(RadioButton *pSourceWindow, bool bBackward) { - std::vector<VclPtr<RadioButton> > aGroup(pSourceWindow->GetRadioButtonGroup(true)); + std::vector<VclPtr<RadioButton> > aGroup(pSourceWindow->GetRadioButtonGroup()); if (aGroup.size() == 1) //only one button in group return false; |