diff options
author | David Athay <ko2fan@gmail.com> | 2009-05-18 17:19:43 +0100 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2009-05-18 17:19:43 +0100 |
commit | e7df8c9dd7ebc14c1263c19c6a238ebcf4fd9465 (patch) | |
tree | 542183b7d7490831f4f8289ce821c483581ead14 /src/gui/connection.h | |
parent | aaec4d115cd0048bbc4bed3d8b1d33492b2a51fa (diff) | |
download | mana-e7df8c9dd7ebc14c1263c19c6a238ebcf4fd9465.tar.gz mana-e7df8c9dd7ebc14c1263c19c6a238ebcf4fd9465.tar.bz2 mana-e7df8c9dd7ebc14c1263c19c6a238ebcf4fd9465.tar.xz mana-e7df8c9dd7ebc14c1263c19c6a238ebcf4fd9465.zip |
Fixed compilation for tmwserv
Diffstat (limited to 'src/gui/connection.h')
-rw-r--r-- | src/gui/connection.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/connection.h b/src/gui/connection.h index 62441fa9..d6059c3f 100644 --- a/src/gui/connection.h +++ b/src/gui/connection.h @@ -24,6 +24,8 @@ #include "gui/widgets/window.h" +#include "main.h" + #include <guichan/actionlistener.hpp> class ProgressBar; @@ -41,7 +43,7 @@ class ConnectionDialog : public Window, gcn::ActionListener * * @see Window::Window */ - ConnectionDialog(int previousState); + ConnectionDialog(State previousState); /** * Called when the user presses Cancel. Restores the global state to @@ -54,7 +56,7 @@ class ConnectionDialog : public Window, gcn::ActionListener private: ProgressBar *mProgressBar; float mProgress; - int mPreviousState; + State mPreviousState; }; #endif |