summaryrefslogtreecommitdiff
path: root/src/net/tmwa/charserverhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-14 21:16:40 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-14 21:16:40 +0300
commit0e13e22e4902eca435812ae002c56ad13233efc6 (patch)
treebaa2a7d2554977854ad50340e5fc208779abee18 /src/net/tmwa/charserverhandler.cpp
parent2763d9c893b3f19485581cb21eabfa38f427eab9 (diff)
downloadplus-0e13e22e4902eca435812ae002c56ad13233efc6.tar.gz
plus-0e13e22e4902eca435812ae002c56ad13233efc6.tar.bz2
plus-0e13e22e4902eca435812ae002c56ad13233efc6.tar.xz
plus-0e13e22e4902eca435812ae002c56ad13233efc6.zip
Use CREATEWIDGET macro in charserverhandler.
Diffstat (limited to 'src/net/tmwa/charserverhandler.cpp')
-rw-r--r--src/net/tmwa/charserverhandler.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/net/tmwa/charserverhandler.cpp b/src/net/tmwa/charserverhandler.cpp
index e27e2c125..859be0bed 100644
--- a/src/net/tmwa/charserverhandler.cpp
+++ b/src/net/tmwa/charserverhandler.cpp
@@ -29,6 +29,8 @@
#include "gui/windows/charcreatedialog.h"
#include "gui/windows/okdialog.h"
+#include "gui/widgets/createwidget.h"
+
#include "net/character.h"
#include "net/serverfeatures.h"
@@ -522,15 +524,18 @@ void CharServerHandler::processCharDeleteFailed(Net::MessageIn &msg)
BLOCK_START("CharServerHandler::processCharDeleteFailed")
unlockCharSelectDialog();
msg.readUInt8("error");
- // TRANSLATORS: error message
- (new OkDialog(_("Error"), _("Failed to delete character."),
+ CREATEWIDGET(OkDialog,
+ // TRANSLATORS: error header
+ _("Error"),
+ // TRANSLATORS: error message
+ _("Failed to delete character."),
// TRANSLATORS: ok dialog button
_("OK"),
DialogType::ERROR,
Modal_true,
ShowCenter_true,
nullptr,
- 260))->postInit();
+ 260);
BLOCK_END("CharServerHandler::processCharDeleteFailed")
}