summaryrefslogtreecommitdiff
path: root/src/shopitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r--src/shopitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp
index ad9990a2..6eb52d18 100644
--- a/src/shopitem.cpp
+++ b/src/shopitem.cpp
@@ -56,7 +56,7 @@ ShopItem::~ShopItem()
void ShopItem::addDuplicate(int inventoryIndex, int quantity)
{
- DuplicateItem* di = new DuplicateItem;
+ auto* di = new DuplicateItem;
di->inventoryIndex = inventoryIndex;
di->quantity = quantity;
mDuplicates.push(di);
@@ -65,7 +65,7 @@ void ShopItem::addDuplicate(int inventoryIndex, int quantity)
void ShopItem::addDuplicate()
{
- DuplicateItem* di = new DuplicateItem;
+ auto* di = new DuplicateItem;
di->inventoryIndex = -1;
di->quantity = 0;
mDuplicates.push(di);