From c841447e5196a34f62860189b0960d78a0ce1ced Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 17 Sep 2014 00:32:31 +0300 Subject: Remove getter for buySellHandler. --- src/gui/windows/buydialog.cpp | 2 +- src/gui/windows/buyselldialog.cpp | 4 ++-- src/gui/windows/selldialog.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gui/windows') diff --git a/src/gui/windows/buydialog.cpp b/src/gui/windows/buydialog.cpp index c09044f7b..c86ef184a 100644 --- a/src/gui/windows/buydialog.cpp +++ b/src/gui/windows/buydialog.cpp @@ -459,7 +459,7 @@ void BuyDialog::action(const ActionEvent &event) const ShopItem *const item = mShopItems->at(selectedItem); if (item) { - Net::getBuySellHandler()->sendBuyRequest(mNick, + buySellHandler->sendBuyRequest(mNick, item, mAmountItems); tradeWindow->addAutoMoney(mNick, item->getPrice() * mAmountItems); diff --git a/src/gui/windows/buyselldialog.cpp b/src/gui/windows/buyselldialog.cpp index 238389ce9..f8d2ec954 100644 --- a/src/gui/windows/buyselldialog.cpp +++ b/src/gui/windows/buyselldialog.cpp @@ -132,14 +132,14 @@ void BuySellDialog::action(const ActionEvent &event) if (mNpcId != -1) Net::getNpcHandler()->buy(mNpcId); else - Net::getBuySellHandler()->requestSellList(mNick); + buySellHandler->requestSellList(mNick); } else if (eventId == "Sell") { if (mNpcId != -1) Net::getNpcHandler()->sell(mNpcId); else - Net::getBuySellHandler()->requestBuyList(mNick); + buySellHandler->requestBuyList(mNick); } close(); diff --git a/src/gui/windows/selldialog.cpp b/src/gui/windows/selldialog.cpp index 70d790733..b62b22976 100644 --- a/src/gui/windows/selldialog.cpp +++ b/src/gui/windows/selldialog.cpp @@ -305,7 +305,7 @@ void SellDialog::action(const ActionEvent &event) else { ShopItem *const item = mShopItems->at(selectedItem); - Net::getBuySellHandler()->sendSellRequest(mNick, + buySellHandler->sendSellRequest(mNick, item, mAmountItems); if (tradeWindow) -- cgit v1.2.3-70-g09d2