diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-26 19:34:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-26 19:34:40 +0300 |
commit | 81145e509cdba68c94c4173e16ddd492cd813db8 (patch) | |
tree | 3603449bfdd5e2d357b240cdaa5cead9b4077a1f /src/gui/widgets/chatinput.h | |
parent | 5e7a4e68d73eb9adcb72de9d7e2b0e592f2c58cc (diff) | |
download | manaverse-81145e509cdba68c94c4173e16ddd492cd813db8.tar.gz manaverse-81145e509cdba68c94c4173e16ddd492cd813db8.tar.bz2 manaverse-81145e509cdba68c94c4173e16ddd492cd813db8.tar.xz manaverse-81145e509cdba68c94c4173e16ddd492cd813db8.zip |
Remove default parameters from textfield.
Diffstat (limited to 'src/gui/widgets/chatinput.h')
-rw-r--r-- | src/gui/widgets/chatinput.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/chatinput.h b/src/gui/widgets/chatinput.h index 92c7dc341..286589ade 100644 --- a/src/gui/widgets/chatinput.h +++ b/src/gui/widgets/chatinput.h @@ -40,7 +40,8 @@ class ChatInput final : public TextField { public: explicit ChatInput(ChatWindow *const window) : - TextField(window, "", LoseFocusOnTab_false), + TextField(window, std::string(), + LoseFocusOnTab_false, nullptr, std::string(), false), mWindow(window), mFocusGaining(false) { |