summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-19 18:28:37 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-20 13:55:42 +0300
commitdf5cd98862d5328c6765b992a3a6e1b3458a1d8a (patch)
tree281949dceabbc4894474f4f5c6cb398f3dd15998 /src/gui/widgets/textbox.h
parent2bf115745f111215b651b87288eb9d15ceb333be (diff)
downloadplus-df5cd98862d5328c6765b992a3a6e1b3458a1d8a.tar.gz
plus-df5cd98862d5328c6765b992a3a6e1b3458a1d8a.tar.bz2
plus-df5cd98862d5328c6765b992a3a6e1b3458a1d8a.tar.xz
plus-df5cd98862d5328c6765b992a3a6e1b3458a1d8a.zip
Derive all widgets from Widget2 class.
Diffstat (limited to 'src/gui/widgets/textbox.h')
-rw-r--r--src/gui/widgets/textbox.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/widgets/textbox.h b/src/gui/widgets/textbox.h
index 300a9d771..335ef777a 100644
--- a/src/gui/widgets/textbox.h
+++ b/src/gui/widgets/textbox.h
@@ -23,6 +23,8 @@
#ifndef TEXTBOX_H
#define TEXTBOX_H
+#include "gui/widgets/widget2.h"
+
#include <guichan/widgets/textbox.hpp>
#include "localconsts.h"
@@ -34,7 +36,8 @@
*
* \ingroup GUI
*/
-class TextBox final : public gcn::TextBox
+class TextBox final : public gcn::TextBox,
+ public Widget2
{
public:
/**