diff options
Diffstat (limited to 'src/gui/unregisterdialog.cpp')
-rw-r--r-- | src/gui/unregisterdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/unregisterdialog.cpp b/src/gui/unregisterdialog.cpp index 081b846c3..69c06da09 100644 --- a/src/gui/unregisterdialog.cpp +++ b/src/gui/unregisterdialog.cpp @@ -53,9 +53,9 @@ UnRegisterDialog::UnRegisterDialog(LoginData *const data): mCancelButton(new Button(this, _("Cancel"), "cancel", this)), mWrongDataNoticeListener(new WrongDataNoticeListener) { - Label *const userLabel = new Label(strprintf(_("Name: %s"), + Label *const userLabel = new Label(this, strprintf(_("Name: %s"), mLoginData->username.c_str())); - Label *const passwordLabel = new Label(_("Password:")); + Label *const passwordLabel = new Label(this, _("Password:")); const int width = 210; const int height = 80; |