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/tmwa/inventoryhandler.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/tmwa/inventoryhandler.cpp')
-rw-r--r-- | src/net/tmwa/inventoryhandler.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/net/tmwa/inventoryhandler.cpp b/src/net/tmwa/inventoryhandler.cpp index cc4ecabbd..734c8403e 100644 --- a/src/net/tmwa/inventoryhandler.cpp +++ b/src/net/tmwa/inventoryhandler.cpp @@ -618,28 +618,28 @@ void InventoryHandler::dropItem(const Item *item, int amount) outMsg.writeInt16(static_cast<Sint16>(amount)); } -bool InventoryHandler::canSplit(const Item *item _UNUSED_) +bool InventoryHandler::canSplit(const Item *item A_UNUSED) { return false; } -void InventoryHandler::splitItem(const Item *item _UNUSED_, - int amount _UNUSED_) +void InventoryHandler::splitItem(const Item *item A_UNUSED, + int amount A_UNUSED) { // Not implemented for eAthena (possible?) } -void InventoryHandler::moveItem(int oldIndex _UNUSED_, int newIndex _UNUSED_) +void InventoryHandler::moveItem(int oldIndex A_UNUSED, int newIndex A_UNUSED) { // Not implemented for eAthena (possible?) } -void InventoryHandler::openStorage(int type _UNUSED_) +void InventoryHandler::openStorage(int type A_UNUSED) { // Doesn't apply to eAthena, since opening happens through NPCs? } -void InventoryHandler::closeStorage(int type _UNUSED_) +void InventoryHandler::closeStorage(int type A_UNUSED) { MessageOut outMsg(CMSG_CLOSE_STORAGE); } |