summaryrefslogtreecommitdiff
path: root/src/net/tmwa/charserverhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-04 18:09:51 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-04 18:09:51 +0300
commit45cc2ca610613ee824e0549904edb33334b265a7 (patch)
treebdfd7badb19824a4fe849ba9de9bdd52737910e5 /src/net/tmwa/charserverhandler.cpp
parentfa2383b7cb1fb53c2411af6bd04c4dbda4c7d3cb (diff)
downloadplus-45cc2ca610613ee824e0549904edb33334b265a7.tar.gz
plus-45cc2ca610613ee824e0549904edb33334b265a7.tar.bz2
plus-45cc2ca610613ee824e0549904edb33334b265a7.tar.xz
plus-45cc2ca610613ee824e0549904edb33334b265a7.zip
Move processCharDeleteFailed from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/tmwa/charserverhandler.cpp')
-rw-r--r--src/net/tmwa/charserverhandler.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/net/tmwa/charserverhandler.cpp b/src/net/tmwa/charserverhandler.cpp
index 34885f7e7..2412a094d 100644
--- a/src/net/tmwa/charserverhandler.cpp
+++ b/src/net/tmwa/charserverhandler.cpp
@@ -28,7 +28,10 @@
#include "being/attributes.h"
+#include "gui/dialogtype.h"
+
#include "gui/windows/charcreatedialog.h"
+#include "gui/windows/okdialog.h"
#include "net/character.h"
#include "net/logindata.h"
@@ -521,4 +524,18 @@ void CharServerHandler::changeSlot(const int oldSlot A_UNUSED,
{
}
+void CharServerHandler::processCharDeleteFailed(Net::MessageIn &msg A_UNUSED)
+{
+ BLOCK_START("CharServerHandler::processCharDeleteFailed")
+ unlockCharSelectDialog();
+ msg.readUInt8("error");
+ // TRANSLATORS: error message
+ new OkDialog(_("Error"), _("Failed to delete character."),
+ // TRANSLATORS: ok dialog button
+ _("OK"),
+ DialogType::ERROR,
+ true, true, nullptr, 260);
+ BLOCK_END("CharServerHandler::processCharDeleteFailed")
+}
+
} // namespace TmwAthena