diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-03 12:01:56 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-03 12:01:56 +0000 |
commit | cbec2c19e81c0f5098c09cd5695c89ee8f03de35 (patch) | |
tree | e1a522cc4da0032e80cb8110cfd4c128626d9e77 /src/gui/help.h | |
parent | 722c13f23561bc99dc6edecfb5ac76d704cb495e (diff) | |
download | mana-cbec2c19e81c0f5098c09cd5695c89ee8f03de35.tar.gz mana-cbec2c19e81c0f5098c09cd5695c89ee8f03de35.tar.bz2 mana-cbec2c19e81c0f5098c09cd5695c89ee8f03de35.tar.xz mana-cbec2c19e81c0f5098c09cd5695c89ee8f03de35.zip |
A few cosmetic updates to help, and removed accounts help as that is outdated
information.
Diffstat (limited to 'src/gui/help.h')
-rw-r--r-- | src/gui/help.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/gui/help.h b/src/gui/help.h index 6c6bec13..366bd418 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -24,10 +24,8 @@ #ifndef _TMW_HELP_H #define _TMW_HELP_H +#include <guichan.hpp> #include "window.h" -#include "scrollarea.h" -#include "button.h" -#include "textbox.h" struct HELP_LINK { int yPos; @@ -63,13 +61,13 @@ class HelpWindow : public Window, public gcn::ActionListener /** * Load help in the dialog. */ - void loadHelp(std::string helpFile); + void loadHelp(const std::string &helpFile); private: - std::vector<HELP_LINK> links; + std::vector<HELP_LINK> links; gcn::Button *okButton; gcn::TextBox *textBox; - ScrollArea *scrollArea; + gcn::ScrollArea *scrollArea; }; #endif |