diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-18 01:12:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-18 22:05:06 +0300 |
commit | f24b4360e73d45bc0830d2964c06e295890e5f18 (patch) | |
tree | 6ce4f8440b22ec665aa94403643c6cb0df1b47f0 /src/gui/base/widgets/checkbox.cpp | |
parent | 14a0a04b2bb3928f7429fd748dd40e1843fca571 (diff) | |
download | mv-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.gz mv-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.bz2 mv-f24b4360e73d45bc0830d2964c06e295890e5f18.tar.xz mv-f24b4360e73d45bc0830d2964c06e295890e5f18.zip |
derive Widget from Widget2.
Diffstat (limited to 'src/gui/base/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/base/widgets/checkbox.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/gui/base/widgets/checkbox.cpp b/src/gui/base/widgets/checkbox.cpp index 7cba5ac47..d75fb5cb0 100644 --- a/src/gui/base/widgets/checkbox.cpp +++ b/src/gui/base/widgets/checkbox.cpp @@ -79,8 +79,8 @@ namespace gcn { - CheckBox::CheckBox() : - gcn::Widget(), + CheckBox::CheckBox(const Widget2 *const widget) : + gcn::Widget(widget), MouseListener(), KeyListener(), mSelected(false), @@ -91,8 +91,10 @@ namespace gcn addKeyListener(this); } - CheckBox::CheckBox(const std::string &caption, bool selected) : - gcn::Widget(), + CheckBox::CheckBox(const Widget2 *const widget, + const std::string &caption, + bool selected) : + gcn::Widget(widget), MouseListener(), KeyListener(), mSelected(selected), |