diff options
author | Ira Rice <irarice@gmail.com> | 2009-02-04 11:46:03 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-04 11:46:03 -0700 |
commit | 555e68e24f2bb7d38f7ce52ce9a43198c0ccedec (patch) | |
tree | f2ceff93ed6193933165e9fbd408a1df6a8b26e1 /src/gui/skill.h | |
parent | 6110801764f588d0696e75645624be4869b99ee0 (diff) | |
download | mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.gz mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.bz2 mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.tar.xz mana-555e68e24f2bb7d38f7ce52ce9a43198c0ccedec.zip |
Went through the gui folder and revised the include statements to not
include anything not needed by that specific widget or window. This
appears to have cleaned up system performance a bit on my current setup,
where it went from idling on 45% in game with opengl down to 30% now.
Also moved iptostring to the tostring header, as importing all of
network.h is a little overkill to use that function, and it goes along
with the basic functions that are in that header file anyways. TODO:
find out a way to get rid of warnings when a class doesn't use this
function.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/skill.h')
-rw-r--r-- | src/gui/skill.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gui/skill.h b/src/gui/skill.h index 45cfd059..91c2b640 100644 --- a/src/gui/skill.h +++ b/src/gui/skill.h @@ -25,19 +25,15 @@ #include <vector> #include <guichan/actionlistener.hpp> -#include <guichan/listmodel.hpp> -#include "scrollarea.h" -#include "table.h" #include "window.h" -#include "../guichanfwd.h" - struct SKILL { short id; /**< Index into "skill_db" array */ short lv, sp; }; +class GuiTable; class SkillGuiTableModel; /** @@ -72,7 +68,7 @@ class SkillDialog : public Window, public gcn::ActionListener const std::vector<SKILL*>& getSkills(void) const { return mSkillList; } private: - GuiTable mTable;//gcn::ListBox *mSkillListBox; + GuiTable *mTable; ScrollArea *skillScrollArea; SkillGuiTableModel *mTableModel; gcn::Label *mPointsLabel; |