summaryrefslogtreecommitdiff
path: root/src/gui/unregisterdialog.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-04-07 20:19:10 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-04-07 20:19:10 +0200
commit7b559dcf64e5814cf4cde7e7db52c2e9f6a7357a (patch)
tree2499b2198dc1efae9d7f15e021c0574a95a0c95a /src/gui/unregisterdialog.h
parentef1975a3eb4e1986601ad154bf184e0de332870c (diff)
downloadmana-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/unregisterdialog.h')
-rw-r--r--src/gui/unregisterdialog.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/gui/unregisterdialog.h b/src/gui/unregisterdialog.h
index 1e3cc88f..5db57b1d 100644
--- a/src/gui/unregisterdialog.h
+++ b/src/gui/unregisterdialog.h
@@ -22,11 +22,11 @@
#ifndef UNREGISTERDIALOG_H
#define UNREGISTERDIALOG_H
-#include <iosfwd>
#include <guichan/actionlistener.hpp>
-#include "window.h"
-#include "../guichanfwd.h"
+#include "gui/window.h"
+
+#include "guichanfwd.h"
class LoginData;
class OkDialog;
@@ -37,18 +37,16 @@ class WrongDataNoticeListener;
*
* \ingroup Interface
*/
-class UnRegisterDialog : public Window, public gcn::ActionListener {
+class UnRegisterDialog : public Window, public gcn::ActionListener
+{
public:
/**
* Constructor
*
* @see Window::Window
*/
- UnRegisterDialog(Window *parent,LoginData *loginData);
+ UnRegisterDialog(Window *parent, LoginData *loginData);
- /**
- * Destructor
- */
~UnRegisterDialog();
/**