diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-17 13:25:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-17 13:25:09 +0300 |
commit | e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43 (patch) | |
tree | 0d82a38a6ab5cbce04bc0eddad6de1cea8116720 /src/net/ea/buysellhandler.cpp | |
parent | b73f378c51a7fb74dc805ca6234cda5868a28fc9 (diff) | |
download | ManaVerse-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.gz ManaVerse-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.bz2 ManaVerse-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.tar.xz ManaVerse-e0bd37fd01e8c14bf6d044382ac12cc11f5eaa43.zip |
Add static in buysellhandler.
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r-- | src/net/ea/buysellhandler.cpp | 13 |
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) |