summaryrefslogtreecommitdiff
path: root/src/gui/widgets/checkbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-26 20:37:08 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-26 20:37:08 +0300
commit681547eff8134564281ff05032eb7d29f1e7f312 (patch)
treea6b41f0e5ac25b1c100c3e609ab34739248e544a /src/gui/widgets/checkbox.h
parent9bc0a2e01e60e3c57324c86fa76be3bfa88dca81 (diff)
downloadplus-681547eff8134564281ff05032eb7d29f1e7f312.tar.gz
plus-681547eff8134564281ff05032eb7d29f1e7f312.tar.bz2
plus-681547eff8134564281ff05032eb7d29f1e7f312.tar.xz
plus-681547eff8134564281ff05032eb7d29f1e7f312.zip
Remove default parameters from checkbox.
Diffstat (limited to 'src/gui/widgets/checkbox.h')
-rw-r--r--src/gui/widgets/checkbox.h6
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)