summaryrefslogtreecommitdiff
path: root/src/gui/models
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-09 11:44:37 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-09 11:44:37 +0300
commit49540a3cac67413e8639ba371782e3635ece74df (patch)
tree1787719bfa551c151be5e72de873a638ad46ab71 /src/gui/models
parent5427c348b135df91731e60b76015bc4051933e55 (diff)
downloadmv-49540a3cac67413e8639ba371782e3635ece74df.tar.gz
mv-49540a3cac67413e8639ba371782e3635ece74df.tar.bz2
mv-49540a3cac67413e8639ba371782e3635ece74df.tar.xz
mv-49540a3cac67413e8639ba371782e3635ece74df.zip
Fix code style.
Diffstat (limited to 'src/gui/models')
-rw-r--r--src/gui/models/shopitems.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/models/shopitems.cpp b/src/gui/models/shopitems.cpp
index 52a0d60b2..1a9b89994 100644
--- a/src/gui/models/shopitems.cpp
+++ b/src/gui/models/shopitems.cpp
@@ -51,10 +51,10 @@ std::string ShopItems::getElementAt(int i)
}
ShopItem *ShopItems::addItem(const int id,
- const int type,
- const unsigned char color,
- const int amount,
- const int price)
+ const int type,
+ const unsigned char color,
+ const int amount,
+ const int price)
{
ShopItem *const item = new ShopItem(-1, id, type, color, amount, price);
mShopItems.push_back(item);