diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-07 20:19:10 +0200 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-04-07 20:19:10 +0200 |
commit | 7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a (patch) | |
tree | 2499b2198dc1efae9d7f15e021c0574a95a0c95a /src/gui/textdialog.h | |
parent | ef1975a3eb4e1986601ad154bf184e0de332870c (diff) | |
download | mana-client-7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a.tar.gz mana-client-7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a.tar.bz2 mana-client-7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a.tar.xz mana-client-7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a.zip |
Used custom widgets where appropriate and some cleanup
Replaced many gcn::Label with Label, gcn::Slider with Slider in
character creation dialog. Also cleaned up includes.
Diffstat (limited to 'src/gui/textdialog.h')
-rw-r--r-- | src/gui/textdialog.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/textdialog.h b/src/gui/textdialog.h index 3dc9259c..16a1e9d8 100644 --- a/src/gui/textdialog.h +++ b/src/gui/textdialog.h @@ -22,10 +22,11 @@ #ifndef GUI_GUILD_DIALOG_H #define GUI_GUILD_DIALOG_H +#include "window.h" + #include <guichan/actionlistener.hpp> -#include "textfield.h" -#include "window.h" +class TextField; /** * An option dialog. @@ -41,7 +42,7 @@ public: * @see Window::Window */ TextDialog(const std::string &title, const std::string &msg, - Window *parent = NULL); + Window *parent = NULL); /** * Called when receiving actions from the widgets. |