diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 16:46:27 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-25 16:46:27 +0000 |
commit | 587275709eb11a036ed474bf6a61f1fd34fc069f (patch) | |
tree | 9c1f073168b1d38e87afdd11427e924340a2d901 /src/gui/login.h | |
parent | 8e9952956dddf37edefeb69c009def3f0dff23eb (diff) | |
download | mana-587275709eb11a036ed474bf6a61f1fd34fc069f.tar.gz mana-587275709eb11a036ed474bf6a61f1fd34fc069f.tar.bz2 mana-587275709eb11a036ed474bf6a61f1fd34fc069f.tar.xz mana-587275709eb11a036ed474bf6a61f1fd34fc069f.zip |
Fixed error causing monster death bitmaps not to show up.
Diffstat (limited to 'src/gui/login.h')
-rw-r--r-- | src/gui/login.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/gui/login.h b/src/gui/login.h index 46c12d08..884b0fd0 100644 --- a/src/gui/login.h +++ b/src/gui/login.h @@ -19,13 +19,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef _TMW_LOGIN_H +#define _TMW_LOGIN_H + #ifdef WIN32 #pragma warning (disable:4312) #endif -#ifndef _LOGIN_H -#define _LOGIN_H - #include "../main.h" #include "../log.h" #include "../net/network.h" @@ -43,7 +43,16 @@ */ class LoginDialog : public Window, public gcn::ActionListener { public: + /** + * Constructor + * + * @see Window::Window + */ LoginDialog(gcn::Container *parent); + + /** + * Destructor + */ ~LoginDialog(); /** |