diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-26 20:37:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-26 20:37:08 +0300 |
commit | 681547eff8134564281ff05032eb7d29f1e7f312 (patch) | |
tree | a6b41f0e5ac25b1c100c3e609ab34739248e544a /src/gui/widgets/checkbox.h | |
parent | 9bc0a2e01e60e3c57324c86fa76be3bfa88dca81 (diff) | |
download | manaplus-681547eff8134564281ff05032eb7d29f1e7f312.tar.gz manaplus-681547eff8134564281ff05032eb7d29f1e7f312.tar.bz2 manaplus-681547eff8134564281ff05032eb7d29f1e7f312.tar.xz manaplus-681547eff8134564281ff05032eb7d29f1e7f312.zip |
Remove default parameters from checkbox.
Diffstat (limited to 'src/gui/widgets/checkbox.h')
-rw-r--r-- | src/gui/widgets/checkbox.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/checkbox.h b/src/gui/widgets/checkbox.h index 27e0a118b..d3c26153b 100644 --- a/src/gui/widgets/checkbox.h +++ b/src/gui/widgets/checkbox.h @@ -95,9 +95,9 @@ class CheckBox final : public Widget, */ CheckBox(const Widget2 *const widget, const std::string &restrict caption, - const bool selected = false, - ActionListener *const listener = nullptr, - const std::string &restrict eventId = ""); + const bool selected, + ActionListener *const listener, + const std::string &restrict eventId); A_DELETE_COPY(CheckBox) |