diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-03 21:31:39 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-03 21:31:39 +0200 |
commit | bb73cadd0afdc9fa55ea66ecedd8be53a6f3198e (patch) | |
tree | 8e4da86724032979f76b13be685878d5c84a11ea /src/gui/widgets/shopitems.cpp | |
parent | cb8ccdd838b0cc08a1620f1ed9c311d75f1aceba (diff) | |
download | plus-bb73cadd0afdc9fa55ea66ecedd8be53a6f3198e.tar.gz plus-bb73cadd0afdc9fa55ea66ecedd8be53a6f3198e.tar.bz2 plus-bb73cadd0afdc9fa55ea66ecedd8be53a6f3198e.tar.xz plus-bb73cadd0afdc9fa55ea66ecedd8be53a6f3198e.zip |
Chnage same methods with different parameters number to different names.
Diffstat (limited to 'src/gui/widgets/shopitems.cpp')
-rw-r--r-- | src/gui/widgets/shopitems.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/shopitems.cpp b/src/gui/widgets/shopitems.cpp index 36994801f..3e46f51a4 100644 --- a/src/gui/widgets/shopitems.cpp +++ b/src/gui/widgets/shopitems.cpp @@ -61,7 +61,7 @@ void ShopItems::addItemNoDup(int id, int amount, int price) mShopItems.push_back(new ShopItem(-1, id, amount, price)); } -void ShopItems::addItem(int inventoryIndex, int id, int quantity, int price) +void ShopItems::addItem2(int inventoryIndex, int id, int quantity, int price) { ShopItem *item = 0; if (mMergeDuplicates) |