diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/windows/unregisterdialog.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/windows/unregisterdialog.cpp b/src/gui/windows/unregisterdialog.cpp index 90c9bd404..c789de720 100644 --- a/src/gui/windows/unregisterdialog.cpp +++ b/src/gui/windows/unregisterdialog.cpp @@ -27,6 +27,7 @@ #include "gui/windows/okdialog.h" #include "gui/widgets/button.h" +#include "gui/widgets/createwidget.h" #include "gui/widgets/label.h" #include "gui/widgets/passwordfield.h" @@ -140,8 +141,9 @@ void UnRegisterDialog::action(const ActionEvent &event) { mWrongDataNoticeListener->setTarget(this->mPasswordField); - // TRANSLATORS: unregister dialog. error message. - OkDialog *const dlg = new OkDialog(_("Error"), + OkDialog *const dlg = CREATEWIDGETR(OkDialog, + // TRANSLATORS: unregister dialog. error message. + _("Error"), errorMsg.str(), // TRANSLATORS: ok dialog button _("OK"), @@ -150,7 +152,6 @@ void UnRegisterDialog::action(const ActionEvent &event) ShowCenter_true, nullptr, 260); - dlg->postInit(); dlg->addActionListener(mWrongDataNoticeListener); } else |