diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-24 23:29:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-24 23:29:04 +0300 |
commit | 4e97da8e138b21a5f5bea75e6a8d3211e4f28594 (patch) | |
tree | c10d3cad963066a908ebd42041723e110a0c9bf0 /src/gui/models/shopitems.cpp | |
parent | ca0ca278d0c4aed9a6d50bb9a8982f5261151ab8 (diff) | |
download | mv-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.gz mv-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.bz2 mv-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.tar.xz mv-4e97da8e138b21a5f5bea75e6a8d3211e4f28594.zip |
Add enum for item types.
Diffstat (limited to 'src/gui/models/shopitems.cpp')
-rw-r--r-- | src/gui/models/shopitems.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/models/shopitems.cpp b/src/gui/models/shopitems.cpp index 2a2b75ae8..c25664cdd 100644 --- a/src/gui/models/shopitems.cpp +++ b/src/gui/models/shopitems.cpp @@ -52,7 +52,7 @@ std::string ShopItems::getElementAt(int i) } ShopItem *ShopItems::addItem(const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int amount, const int price) @@ -64,7 +64,7 @@ ShopItem *ShopItems::addItem(const int id, } ShopItem *ShopItems::addItemNoDup(const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int amount, const int price) @@ -81,7 +81,7 @@ ShopItem *ShopItems::addItemNoDup(const int id, ShopItem *ShopItems::addItem2(const int inventoryIndex, const int id, - const int type, + const ItemTypeT type, const ItemColor color, const int quantity, const int price) |