diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 01:45:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8 (patch) | |
tree | 8ab383dce47ed689137addbac041ef1f9e300faf /src/gui/widgets/textfield.cpp | |
parent | 5d02ab43ff6d3e328a3b02479c033609023edec2 (diff) | |
download | plus-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.gz plus-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.bz2 plus-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.xz plus-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.zip |
Add palette inheritance to textfield class.
Diffstat (limited to 'src/gui/widgets/textfield.cpp')
-rw-r--r-- | src/gui/widgets/textfield.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/widgets/textfield.cpp b/src/gui/widgets/textfield.cpp index 6c11d2e17..e8a57067b 100644 --- a/src/gui/widgets/textfield.cpp +++ b/src/gui/widgets/textfield.cpp @@ -47,11 +47,12 @@ int TextField::instances = 0; float TextField::mAlpha = 1.0; ImageRect TextField::skin; -TextField::TextField(const std::string &text, const bool loseFocusOnTab, +TextField::TextField(const Widget2 *const widget, + const std::string &text, const bool loseFocusOnTab, gcn::ActionListener *const listener, std::string eventId, const bool sendAlwaysEvents): gcn::TextField(text), - Widget2(), + Widget2(widget), mSendAlwaysEvents(sendAlwaysEvents), mNumeric(false), mMinimum(0), |