diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-15 23:58:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-15 23:58:22 +0300 |
commit | 768523601ff80a23bf3e821484cc116c62498a38 (patch) | |
tree | 45bcf588111d58755b78cfd900db0b8cdfaecdea /src/gui/base/widgets/checkbox.cpp | |
parent | 01d93aedcc4d1632ff5915c3989a502ec31cd978 (diff) | |
download | plus-768523601ff80a23bf3e821484cc116c62498a38.tar.gz plus-768523601ff80a23bf3e821484cc116c62498a38.tar.bz2 plus-768523601ff80a23bf3e821484cc116c62498a38.tar.xz plus-768523601ff80a23bf3e821484cc116c62498a38.zip |
move keylistener from base into listeners.
Diffstat (limited to 'src/gui/base/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/base/widgets/checkbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/base/widgets/checkbox.cpp b/src/gui/base/widgets/checkbox.cpp index 615808a85..ceb59a1eb 100644 --- a/src/gui/base/widgets/checkbox.cpp +++ b/src/gui/base/widgets/checkbox.cpp @@ -81,7 +81,7 @@ namespace gcn CheckBox::CheckBox() : gcn::Widget(), gcn::MouseListener(), - gcn::KeyListener(), + KeyListener(), mSelected(false), mCaption() { @@ -93,7 +93,7 @@ namespace gcn CheckBox::CheckBox(const std::string &caption, bool selected) : gcn::Widget(), gcn::MouseListener(), - gcn::KeyListener(), + KeyListener(), mSelected(selected), mCaption() { |