diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-03 23:06:51 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-03 23:06:51 -0600 |
commit | 69217e82e8631bbb2183a1322d0985a495c52f5e (patch) | |
tree | 60ba8d777ddd9d8121a910e864b8d2434c982347 /src/gui/worldselectdialog.h | |
parent | 8ef86b6da8e2b5a9c5ff9db6ef22980013e52dd3 (diff) | |
download | mana-69217e82e8631bbb2183a1322d0985a495c52f5e.tar.gz mana-69217e82e8631bbb2183a1322d0985a495c52f5e.tar.bz2 mana-69217e82e8631bbb2183a1322d0985a495c52f5e.tar.xz mana-69217e82e8631bbb2183a1322d0985a495c52f5e.zip |
Polish login procedure and fix some bugs with it
WorldSelectDialog now works correctly. Buttons for several dialogs have more explainatory text and consistant locations.
Diffstat (limited to 'src/gui/worldselectdialog.h')
-rw-r--r-- | src/gui/worldselectdialog.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/worldselectdialog.h b/src/gui/worldselectdialog.h index be18705c..0b93e62e 100644 --- a/src/gui/worldselectdialog.h +++ b/src/gui/worldselectdialog.h @@ -31,7 +31,7 @@ #include <vector> class LoginData; -class ServerListModel; +class WorldListModel; /** * The server select dialog. @@ -58,9 +58,10 @@ class WorldSelectDialog : public Window, public gcn::ActionListener { void action(const gcn::ActionEvent &event); private: - ServerListModel *mServerListModel; - gcn::ListBox *mServerList; - gcn::Button *mOkButton; + WorldListModel *mWorldListModel; + gcn::ListBox *mWorldList; + gcn::Button *mChangeLoginButton; + gcn::Button *mChooseWorld; }; #endif // WORLD_SELECT_DIALOG_H |