summaryrefslogtreecommitdiff
path: root/src/net/eathena/buysellhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-14 21:06:46 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-14 21:06:46 +0300
commit21eb6aa0cc168de4e90b74e4d917df5abd81d9bb (patch)
treebf4717822eb609378db12f18deea980797077b22 /src/net/eathena/buysellhandler.cpp
parent308f903d2de25ddd99b70e9d8c8ae28f05f3694d (diff)
downloadplus-21eb6aa0cc168de4e90b74e4d917df5abd81d9bb.tar.gz
plus-21eb6aa0cc168de4e90b74e4d917df5abd81d9bb.tar.bz2
plus-21eb6aa0cc168de4e90b74e4d917df5abd81d9bb.tar.xz
plus-21eb6aa0cc168de4e90b74e4d917df5abd81d9bb.zip
Use CREATEWIDGET macro in buysellhandler.
Diffstat (limited to 'src/net/eathena/buysellhandler.cpp')
-rw-r--r--src/net/eathena/buysellhandler.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/net/eathena/buysellhandler.cpp b/src/net/eathena/buysellhandler.cpp
index c10978b3d..00895f7d9 100644
--- a/src/net/eathena/buysellhandler.cpp
+++ b/src/net/eathena/buysellhandler.cpp
@@ -28,6 +28,8 @@
#include "gui/windows/buydialog.h"
+#include "gui/widgets/createwidget.h"
+
#include "net/eathena/messageout.h"
#include "net/eathena/protocol.h"
@@ -92,8 +94,7 @@ void BuySellHandler::processNpcBuy(Net::MessageIn &msg)
msg.readInt16("len");
const int sz = 11;
const int n_items = (msg.getLength() - 4) / sz;
- mBuyDialog = new BuyDialog(mNpcId);
- mBuyDialog->postInit();
+ CREATEWIDGETV(mBuyDialog, BuyDialog, mNpcId);
mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY));
for (int k = 0; k < n_items; k++)