diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-20 18:43:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-20 18:43:00 +0300 |
commit | a9877525597aa94f1d974b8f45567b4168cf6c8e (patch) | |
tree | 56673d8e770302a2846f1d1db0db1a890bba95cd /src/shopitem.cpp | |
parent | 2ce675592a1a96cc9960082485797045a921676d (diff) | |
download | plus-a9877525597aa94f1d974b8f45567b4168cf6c8e.tar.gz plus-a9877525597aa94f1d974b8f45567b4168cf6c8e.tar.bz2 plus-a9877525597aa94f1d974b8f45567b4168cf6c8e.tar.xz plus-a9877525597aa94f1d974b8f45567b4168cf6c8e.zip |
Remove item default parameters.
Diffstat (limited to 'src/shopitem.cpp')
-rw-r--r-- | src/shopitem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shopitem.cpp b/src/shopitem.cpp index 383f96a03..814b99330 100644 --- a/src/shopitem.cpp +++ b/src/shopitem.cpp @@ -35,7 +35,7 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, const unsigned char color, const int quantity, const int price) : - Item(id, 0, 0, color), + Item(id, 0, 0, color, false, false), mDisplayName(), mDuplicates(), mPrice(price), @@ -47,7 +47,7 @@ ShopItem::ShopItem(const int inventoryIndex, const int id, } ShopItem::ShopItem(const int id, const unsigned char color, const int price) : - Item(id, 0, 0, color), + Item(id, 0, 0, color, false, false), mDisplayName(), mDuplicates(), mPrice(price), |