diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-07 22:52:35 +0300 |
commit | 5e14ab971129eb95ca02e373fc21adb46c0eaca1 (patch) | |
tree | 5316f688c7f617776b7e70c9f64932fe7596cadb /src/net/manaserv/buysellhandler.cpp | |
parent | ed950471f7ae02c4618fa995c305832f12dc9cd7 (diff) | |
download | plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.gz plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.bz2 plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.tar.xz plus-5e14ab971129eb95ca02e373fc21adb46c0eaca1.zip |
Remove undescore from variables and defines.
Diffstat (limited to 'src/net/manaserv/buysellhandler.cpp')
-rw-r--r-- | src/net/manaserv/buysellhandler.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/manaserv/buysellhandler.cpp b/src/net/manaserv/buysellhandler.cpp index 97ec36654..7cc0e70f2 100644 --- a/src/net/manaserv/buysellhandler.cpp +++ b/src/net/manaserv/buysellhandler.cpp @@ -107,26 +107,26 @@ void BuySellHandler::handleMessage(Net::MessageIn &msg) } } -void BuySellHandler::requestSellList(std::string nick _UNUSED_) +void BuySellHandler::requestSellList(std::string nick A_UNUSED) { // TODO } -void BuySellHandler::requestBuyList(std::string nick _UNUSED_) +void BuySellHandler::requestBuyList(std::string nick A_UNUSED) { // TODO } -void BuySellHandler::sendBuyRequest(std::string nick _UNUSED_, - ShopItem* item _UNUSED_, - int amount _UNUSED_) +void BuySellHandler::sendBuyRequest(std::string nick A_UNUSED, + ShopItem* item A_UNUSED, + int amount A_UNUSED) { // TODO } -void BuySellHandler::sendSellRequest(std::string nick _UNUSED_, - ShopItem* item _UNUSED_, - int amount _UNUSED_) +void BuySellHandler::sendSellRequest(std::string nick A_UNUSED, + ShopItem* item A_UNUSED, + int amount A_UNUSED) { // TODO } |