diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-01 12:48:28 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-01 12:48:28 -0600 |
commit | da61b7e9cb40e75ad0d74cc64853bf1b08d0a031 (patch) | |
tree | a1d5157ac530b42ce4ca2c316fcaa419cc23c01c /src/gui/charselectdialog.cpp | |
parent | 83fd36204202b4b5cca7e6cdb37c025919f32f08 (diff) | |
download | mana-client-da61b7e9cb40e75ad0d74cc64853bf1b08d0a031.tar.gz mana-client-da61b7e9cb40e75ad0d74cc64853bf1b08d0a031.tar.bz2 mana-client-da61b7e9cb40e75ad0d74cc64853bf1b08d0a031.tar.xz mana-client-da61b7e9cb40e75ad0d74cc64853bf1b08d0a031.zip |
Finish merging registration dialog
Diffstat (limited to 'src/gui/charselectdialog.cpp')
-rw-r--r-- | src/gui/charselectdialog.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp index be1cd3de..d4758a8d 100644 --- a/src/gui/charselectdialog.cpp +++ b/src/gui/charselectdialog.cpp @@ -28,13 +28,13 @@ #include "gui/changepassworddialog.h" #include "net/logindata.h" -#ifdef TMWSERV_SUPPORT #include "gui/widgets/radiobutton.h" #include "gui/widgets/slider.h" #include "gui/unregisterdialog.h" #include "gui/changeemaildialog.h" +#ifdef TMWSERV_SUPPORT #include "net/tmwserv/accountserver/account.h" #else #include "net/ea/protocol.h" @@ -92,6 +92,9 @@ void CharDeleteConfirm::action(const gcn::ActionEvent &event) ConfirmDialog::action(event); } +bool CharSelectDialog::doAllowUnregister = true; +bool CharSelectDialog::doAllowChangeEmail = true; + CharSelectDialog::CharSelectDialog(LockedArray<LocalPlayer*> *charInfo, LoginData *loginData): Window(_("Account and Character Management")), @@ -369,3 +372,10 @@ bool CharSelectDialog::selectByName(const std::string &name) return false; } + +static void CharSelectDialog::setNetworkOptions(bool allowUnregister, + bool allowChangeEmail) +{ + doAllowUnregister = allowUnregister; + doAllowChangeEmail = allowChangeEmail; +} |