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/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/manaserv/inventoryhandler.cpp')
-rw-r--r-- | src/net/manaserv/inventoryhandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/manaserv/inventoryhandler.cpp b/src/net/manaserv/inventoryhandler.cpp index 111eee944..75823be51 100644 --- a/src/net/manaserv/inventoryhandler.cpp +++ b/src/net/manaserv/inventoryhandler.cpp @@ -182,18 +182,18 @@ void InventoryHandler::moveItem(int oldIndex, int newIndex) gameServerConnection->send(msg); } -void InventoryHandler::openStorage(int type _UNUSED_) +void InventoryHandler::openStorage(int type A_UNUSED) { // TODO } -void InventoryHandler::closeStorage(int type _UNUSED_) +void InventoryHandler::closeStorage(int type A_UNUSED) { // TODO } -void InventoryHandler::moveItem(int source _UNUSED_, int slot _UNUSED_, - int amount _UNUSED_, int destination _UNUSED_) +void InventoryHandler::moveItem(int source A_UNUSED, int slot A_UNUSED, + int amount A_UNUSED, int destination A_UNUSED) { // TODO } |