summaryrefslogtreecommitdiff
path: root/src/net/ea/buysellhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-17 13:25:09 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-17 13:25:09 +0300
commite0bd37fd01e8c14bf6d044382ac12cc11f5eaa43 (patch)
tree0d82a38a6ab5cbce04bc0eddad6de1cea8116720 /src/net/ea/buysellhandler.cpp
parentb73f378c51a7fb74dc805ca6234cda5868a28fc9 (diff)
downloadplus-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.gz
plus-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.bz2
plus-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.xz
plus-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.zip
Add static in buysellhandler.
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r--src/net/ea/buysellhandler.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/net/ea/buysellhandler.cpp b/src/net/ea/buysellhandler.cpp
index 14378de4a..d4b660786 100644
--- a/src/net/ea/buysellhandler.cpp
+++ b/src/net/ea/buysellhandler.cpp
@@ -49,10 +49,13 @@
namespace Ea
{
-BuySellHandler::BuySellHandler() :
- mNpcId(0),
- mBuyDialog(nullptr)
+int BuySellHandler::mNpcId = 0;
+BuyDialog *BuySellHandler::mBuyDialog = nullptr;
+
+BuySellHandler::BuySellHandler()
{
+ mNpcId = 0;
+ mBuyDialog = nullptr;
}
void BuySellHandler::requestSellList(const std::string &nick) const
@@ -139,7 +142,7 @@ void BuySellHandler::processNpcBuySellChoice(Net::MessageIn &msg)
}
}
-void BuySellHandler::processNpcSell(Net::MessageIn &msg) const
+void BuySellHandler::processNpcSell(Net::MessageIn &msg)
{
msg.readInt16("len");
const int n_items = (msg.getLength() - 4) / 10;
@@ -168,7 +171,7 @@ void BuySellHandler::processNpcSell(Net::MessageIn &msg) const
}
}
-void BuySellHandler::processNpcBuyResponse(Net::MessageIn &msg) const
+void BuySellHandler::processNpcBuyResponse(Net::MessageIn &msg)
{
const uint8_t response = msg.readUInt8("response");
if (response == 0U)