diff options
author | José Ávila <linux@javila.net> | 2005-06-03 06:18:17 +0000 |
---|---|---|
committer | José Ávila <linux@javila.net> | 2005-06-03 06:18:17 +0000 |
commit | f73656a5f854bbde8aaf727c09d31a9215b1e041 (patch) | |
tree | b83c18c82c62873ab34d854a4b3ab8ff10ba0c38 /src/gui/help.h | |
parent | f4bab20b13d4b11522171b21b35d26ee43727206 (diff) | |
download | mana-f73656a5f854bbde8aaf727c09d31a9215b1e041.tar.gz mana-f73656a5f854bbde8aaf727c09d31a9215b1e041.tar.bz2 mana-f73656a5f854bbde8aaf727c09d31a9215b1e041.tar.xz mana-f73656a5f854bbde8aaf727c09d31a9215b1e041.zip |
Modification in help system
Diffstat (limited to 'src/gui/help.h')
-rw-r--r-- | src/gui/help.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/help.h b/src/gui/help.h index 17821765..6c6bec13 100644 --- a/src/gui/help.h +++ b/src/gui/help.h @@ -24,7 +24,6 @@ #ifndef _TMW_HELP_H #define _TMW_HELP_H -#include <guichan.hpp> #include "window.h" #include "scrollarea.h" #include "button.h" @@ -64,13 +63,13 @@ class HelpWindow : public Window, public gcn::ActionListener /** * Load help in the dialog. */ - void loadHelp(std::string& helpFile); + void loadHelp(std::string helpFile); private: std::vector<HELP_LINK> links; gcn::Button *okButton; gcn::TextBox *textBox; - gcn::ScrollArea *scrollArea; + ScrollArea *scrollArea; }; #endif |