summaryrefslogtreecommitdiff
path: root/src/gui/base/widget.hpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-18 01:12:45 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-18 22:05:06 +0300
commitf24b4360e73d45bc0830d2964c06e295890e5f18 (patch)
tree6ce4f8440b22ec665aa94403643c6cb0df1b47f0 /src/gui/base/widget.hpp
parent14a0a04b2bb3928f7429fd748dd40e1843fca571 (diff)
downloadplus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.gz
plus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.bz2
plus-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.xz
plus-f24b4360e73d45bc0830d2964c06e295890e5f18.zip
derive Widget from Widget2.
Diffstat (limited to 'src/gui/base/widget.hpp')
-rw-r--r--src/gui/base/widget.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/base/widget.hpp b/src/gui/base/widget.hpp
index 1c1c0ae14..013ead3b8 100644
--- a/src/gui/base/widget.hpp
+++ b/src/gui/base/widget.hpp
@@ -71,6 +71,8 @@
#include "gui/base/color.hpp"
#include "gui/base/rectangle.hpp"
+#include "gui/widgets/widget2.h"
+
#include "localconsts.h"
class ActionListener;
@@ -100,7 +102,7 @@ namespace gcn
* @author Per Larsson.
* @since 0.1.0
*/
- class Widget
+ class Widget : public Widget2
{
public:
/**
@@ -108,7 +110,7 @@ namespace gcn
* focusable as default, therefore, widgets that are supposed to be
* focusable should overide this default in their own constructor.
*/
- Widget();
+ Widget(const Widget2 *const widget);
A_DELETE_COPY(Widget)