diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-20 22:36:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-20 22:36:48 +0300 |
commit | d83c6dd523827087681f019ebfca8798380dc968 (patch) | |
tree | 65515ef8405399007fef057bc37dc39ab1911000 /src/gui/widgets/listbox.h | |
parent | 26f9aad24bc50d4e9fd161d185df049c9e7a62cf (diff) | |
download | plus-d83c6dd523827087681f019ebfca8798380dc968.tar.gz plus-d83c6dd523827087681f019ebfca8798380dc968.tar.bz2 plus-d83c6dd523827087681f019ebfca8798380dc968.tar.xz plus-d83c6dd523827087681f019ebfca8798380dc968.zip |
fix code style.
Diffstat (limited to 'src/gui/widgets/listbox.h')
-rw-r--r-- | src/gui/widgets/listbox.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/widgets/listbox.h b/src/gui/widgets/listbox.h index f1ebee317..625f21085 100644 --- a/src/gui/widgets/listbox.h +++ b/src/gui/widgets/listbox.h @@ -23,12 +23,23 @@ #ifndef GUI_WIDGETS_LISTBOX_H #define GUI_WIDGETS_LISTBOX_H +#include "gui/base/color.hpp" + #include "gui/base/widgets/listbox.hpp" +#include "render/graphics.h" + #include "localconsts.h" class Skin; +class KeyEvent; +class MouseEvent; +class Widget2; +namespace gcn +{ + class ListModel; +} /** * A list box, meant to be used inside a scroll area. Same as the Guichan list * box except this one doesn't have a background, instead completely relying |