From 76dc498cd50fb5bc83b3d0a165df17781af35979 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 21 May 2015 22:00:30 +0300 Subject: Call postInit after each window creation. --- src/net/eathena/buysellhandler.cpp | 1 + src/net/eathena/cashshophandler.cpp | 1 + src/net/eathena/charserverhandler.cpp | 16 ++++++++-------- src/net/eathena/markethandler.cpp | 1 + src/net/eathena/vendinghandler.cpp | 1 + 5 files changed, 12 insertions(+), 8 deletions(-) (limited to 'src/net/eathena') diff --git a/src/net/eathena/buysellhandler.cpp b/src/net/eathena/buysellhandler.cpp index a810feac7..26a5a538b 100644 --- a/src/net/eathena/buysellhandler.cpp +++ b/src/net/eathena/buysellhandler.cpp @@ -95,6 +95,7 @@ void BuySellHandler::processNpcBuy(Net::MessageIn &msg) const int sz = 11; const int n_items = (msg.getLength() - 4) / sz; mBuyDialog = new BuyDialog(mNpcId); + mBuyDialog->postInit(); mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY)); for (int k = 0; k < n_items; k++) diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp index 3ddbe9444..90eb1b2af 100644 --- a/src/net/eathena/cashshophandler.cpp +++ b/src/net/eathena/cashshophandler.cpp @@ -96,6 +96,7 @@ void CashShopHandler::processCashShopOpen(Net::MessageIn &msg) const int count = (msg.readInt16("len") - 12) / 11; mBuyDialog = new BuyDialog(BuyDialog::Cash); + mBuyDialog->postInit(); mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY)); msg.readInt32("cash points"); diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp index f3ce778cf..0a634c80f 100644 --- a/src/net/eathena/charserverhandler.cpp +++ b/src/net/eathena/charserverhandler.cpp @@ -574,14 +574,14 @@ void CharServerHandler::processCharCheckRename(Net::MessageIn &msg) else { // TRANSLATORS: info message - new OkDialog(_("Error"), _("Character rename error."), + (new OkDialog(_("Error"), _("Character rename error."), // TRANSLATORS: ok dialog button _("Error"), DialogType::ERROR, Modal_true, ShowCenter_true, nullptr, - 260); + 260))->postInit(); } } @@ -592,14 +592,14 @@ void CharServerHandler::processCharRename(Net::MessageIn &msg) { mCharSelectDialog->setName(mRenameId, mNewName); // TRANSLATORS: info message - new OkDialog(_("Info"), _("Character renamed."), + (new OkDialog(_("Info"), _("Character renamed."), // TRANSLATORS: ok dialog button _("OK"), DialogType::OK, Modal_true, ShowCenter_true, nullptr, - 260); + 260))->postInit(); } else { @@ -625,14 +625,14 @@ void CharServerHandler::processCharRename(Net::MessageIn &msg) break; } // TRANSLATORS: info message - new OkDialog(_("Info"), message, + (new OkDialog(_("Info"), message, // TRANSLATORS: ok dialog button _("OK"), DialogType::OK, Modal_true, ShowCenter_true, nullptr, - 260); + 260))->postInit(); } } @@ -658,14 +658,14 @@ void CharServerHandler::processCharDeleteFailed(Net::MessageIn &msg) unlockCharSelectDialog(); msg.readUInt8("error"); // TRANSLATORS: error message - new OkDialog(_("Error"), _("Failed to delete character."), + (new OkDialog(_("Error"), _("Failed to delete character."), // TRANSLATORS: ok dialog button _("OK"), DialogType::ERROR, Modal_true, ShowCenter_true, nullptr, - 260); + 260))->postInit(); BLOCK_END("CharServerHandler::processCharDeleteFailed") } diff --git a/src/net/eathena/markethandler.cpp b/src/net/eathena/markethandler.cpp index f57b3ec2d..175429cda 100644 --- a/src/net/eathena/markethandler.cpp +++ b/src/net/eathena/markethandler.cpp @@ -78,6 +78,7 @@ void MarketHandler::processMarketOpen(Net::MessageIn &msg) const int len = (msg.readInt16("len") - 4) / 13; mBuyDialog = new BuyDialog(BuyDialog::Market); + mBuyDialog->postInit(); mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY)); for (int f = 0; f < len; f ++) diff --git a/src/net/eathena/vendinghandler.cpp b/src/net/eathena/vendinghandler.cpp index 27a43200f..9ba6bfc7b 100644 --- a/src/net/eathena/vendinghandler.cpp +++ b/src/net/eathena/vendinghandler.cpp @@ -144,6 +144,7 @@ void VendingHandler::processItemsList(Net::MessageIn &msg) if (!being) return; mBuyDialog = new BuyDialog(being->getName()); + mBuyDialog->postInit(); mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY)); msg.readInt32("vender id"); for (int f = 0; f < count; f ++) -- cgit v1.2.3-70-g09d2