diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-13 13:29:14 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-13 13:29:14 +0000 |
commit | f18c47aede3b128e20e57464296bb86a0afc103f (patch) | |
tree | 547bb7acab41d3cb431c53baa7e3ef0b1c2e083a /src | |
parent | 10b881f997384378a299bff358716db5183b65a5 (diff) | |
download | mana-client-f18c47aede3b128e20e57464296bb86a0afc103f.tar.gz mana-client-f18c47aede3b128e20e57464296bb86a0afc103f.tar.bz2 mana-client-f18c47aede3b128e20e57464296bb86a0afc103f.tar.xz mana-client-f18c47aede3b128e20e57464296bb86a0afc103f.zip |
Small header cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/engine.cpp | 2 | ||||
-rw-r--r-- | src/gui/char_select.cpp | 2 | ||||
-rw-r--r-- | src/gui/inventorywindow.cpp | 2 | ||||
-rw-r--r-- | src/gui/skill.cpp | 7 | ||||
-rw-r--r-- | src/gui/skill.h | 8 | ||||
-rw-r--r-- | src/gui/stats.cpp | 2 | ||||
-rw-r--r-- | src/gui/status.cpp | 2 |
7 files changed, 20 insertions, 5 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 7dd70b07..a14b04f6 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -25,6 +25,8 @@ #include <sstream> +#include <guichan/widgets/label.hpp> + #include "being.h" #include "configuration.h" #include "floor_item.h" diff --git a/src/gui/char_select.cpp b/src/gui/char_select.cpp index 245d11c7..8ed24bde 100644 --- a/src/gui/char_select.cpp +++ b/src/gui/char_select.cpp @@ -27,6 +27,8 @@ #include <guichan/sdl/sdlinput.hpp> +#include <guichan/widgets/label.hpp> + #include "button.h" #include "gui.h" #include "ok_dialog.h" diff --git a/src/gui/inventorywindow.cpp b/src/gui/inventorywindow.cpp index 81b4b7b6..d13fa35d 100644 --- a/src/gui/inventorywindow.cpp +++ b/src/gui/inventorywindow.cpp @@ -25,6 +25,8 @@ #include <string> +#include <guichan/widgets/label.hpp> + #include "button.h" #include "item_amount.h" #include "itemcontainer.h" diff --git a/src/gui/skill.cpp b/src/gui/skill.cpp index b10ecda8..ebacf761 100644 --- a/src/gui/skill.cpp +++ b/src/gui/skill.cpp @@ -22,10 +22,15 @@ */ #include "skill.h" + +#include <guichan/widgets/label.hpp> + +#include "button.h" #include "listbox.h" #include "scrollarea.h" -#include "button.h" + #include "../playerinfo.h" + #include "../net/network.h" char *skill_db[] = { diff --git a/src/gui/skill.h b/src/gui/skill.h index ffbea16f..e71af12a 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -26,13 +26,13 @@ #include <vector> -#include <guichan/widgets/button.hpp> -#include <guichan/widgets/label.hpp> -#include <guichan/widgets/listbox.hpp> -#include <guichan/widgets/scrollarea.hpp> +#include <guichan/listmodel.hpp> +#include <guichan/actionlistener.hpp> #include "window.h" +#include "../guichanfwd.h" + struct SKILL { short id; /**< Index into "skill_db" array */ short lv, sp; diff --git a/src/gui/stats.cpp b/src/gui/stats.cpp index 3948d25e..c5afe82d 100644 --- a/src/gui/stats.cpp +++ b/src/gui/stats.cpp @@ -25,6 +25,8 @@ #include <sstream> +#include <guichan/widgets/label.hpp> + #include "button.h" #include "../playerinfo.h" diff --git a/src/gui/status.cpp b/src/gui/status.cpp index 67ca4458..3c12fd42 100644 --- a/src/gui/status.cpp +++ b/src/gui/status.cpp @@ -23,6 +23,8 @@ #include "status.h" +#include <guichan/widgets/label.hpp> + #include "button.h" #include "equipmentwindow.h" #include "inventorywindow.h" |