diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-15 17:39:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-15 17:39:57 +0300 |
commit | 5658a770c18b99807e4a598e7dc70ea3f765ba81 (patch) | |
tree | f61a418fa237f82004a99a03b85a2e80ab01bd8f /src/gui/setup_input.h | |
parent | b2b348d4baf2891fd82635e068a4f64d2694ba6d (diff) | |
download | plus-5658a770c18b99807e4a598e7dc70ea3f765ba81.tar.gz plus-5658a770c18b99807e4a598e7dc70ea3f765ba81.tar.bz2 plus-5658a770c18b99807e4a598e7dc70ea3f765ba81.tar.xz plus-5658a770c18b99807e4a598e7dc70ea3f765ba81.zip |
Override some methods in guichan listbox.
Diffstat (limited to 'src/gui/setup_input.h')
-rw-r--r-- | src/gui/setup_input.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/setup_input.h b/src/gui/setup_input.h index 8fefe9923..ba7ddcf29 100644 --- a/src/gui/setup_input.h +++ b/src/gui/setup_input.h @@ -28,11 +28,10 @@ #include <guichan/actionlistener.hpp> -#include <guichan/widgets/listbox.hpp> - #include <string> class Button; +class ListBox; class TabStrip; struct SetupActionData; @@ -90,7 +89,7 @@ class Setup_Input final : public SetupTab const std::string &text) const; class KeyListModel *mKeyListModel; - gcn::ListBox *mKeyList; + ListBox *mKeyList; Button *mAssignKeyButton; Button *mUnassignKeyButton; |