diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-26 21:21:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-26 21:21:20 +0300 |
commit | b55ff3861d1ddc46f5ee47b442e242786f0b0742 (patch) | |
tree | dcaea0040789c2f8464a5de89aeaf3737dc60d66 /src/gui/widgets | |
parent | 681547eff8134564281ff05032eb7d29f1e7f312 (diff) | |
download | mv-b55ff3861d1ddc46f5ee47b442e242786f0b0742.tar.gz mv-b55ff3861d1ddc46f5ee47b442e242786f0b0742.tar.bz2 mv-b55ff3861d1ddc46f5ee47b442e242786f0b0742.tar.xz mv-b55ff3861d1ddc46f5ee47b442e242786f0b0742.zip |
Remove default parameters from radiobutton.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/radiobutton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/radiobutton.h b/src/gui/widgets/radiobutton.h index 37bafab29..10979fd39 100644 --- a/src/gui/widgets/radiobutton.h +++ b/src/gui/widgets/radiobutton.h @@ -94,7 +94,7 @@ class RadioButton final : public Widget, RadioButton(const Widget2 *const widget, const std::string &restrict caption, const std::string &restrict group, - const bool marked = false); + const bool marked); A_DELETE_COPY(RadioButton) |