diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/textfield.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/widgets/textfield.h b/src/gui/widgets/textfield.h index eaecf41e7..cbbe51562 100644 --- a/src/gui/widgets/textfield.h +++ b/src/gui/widgets/textfield.h @@ -45,12 +45,12 @@ class TextField : public gcn::TextField, /** * Constructor, initializes the text field with the given string. */ - TextField(const Widget2 *const widget, - const std::string &text = "", - const bool loseFocusOnTab = true, - gcn::ActionListener *const listener = nullptr, - const std::string &eventId = "", - const bool sendAlwaysEvents = false); + explicit TextField(const Widget2 *const widget, + const std::string &text = "", + const bool loseFocusOnTab = true, + gcn::ActionListener *const listener = nullptr, + const std::string &eventId = "", + const bool sendAlwaysEvents = false); A_DELETE_COPY(TextField) |