diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 01:45:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 13:55:43 +0300 |
commit | f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8 (patch) | |
tree | 8ab383dce47ed689137addbac041ef1f9e300faf /src/gui/unregisterdialog.cpp | |
parent | 5d02ab43ff6d3e328a3b02479c033609023edec2 (diff) | |
download | ManaVerse-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.gz ManaVerse-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.bz2 ManaVerse-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.tar.xz ManaVerse-f5f77f16d8c0dc23ffaf4c6a8590e4c026bfcfc8.zip |
Add palette inheritance to textfield class.
Diffstat (limited to 'src/gui/unregisterdialog.cpp')
-rw-r--r-- | src/gui/unregisterdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/unregisterdialog.cpp b/src/gui/unregisterdialog.cpp index 10280316a..081b846c3 100644 --- a/src/gui/unregisterdialog.cpp +++ b/src/gui/unregisterdialog.cpp @@ -48,7 +48,7 @@ UnRegisterDialog::UnRegisterDialog(LoginData *const data): Window(_("Unregister"), true, nullptr, "unregister.xml"), gcn::ActionListener(), mLoginData(data), - mPasswordField(new PasswordField(mLoginData->password)), + mPasswordField(new PasswordField(this, mLoginData->password)), mUnRegisterButton(new Button(this, _("Unregister"), "unregister", this)), mCancelButton(new Button(this, _("Cancel"), "cancel", this)), mWrongDataNoticeListener(new WrongDataNoticeListener) |