diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-09 11:44:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-09 11:44:37 +0300 |
commit | 49540a3cac67413e8639ba371782e3635ece74df (patch) | |
tree | 1787719bfa551c151be5e72de873a638ad46ab71 /src/gui/models | |
parent | 5427c348b135df91731e60b76015bc4051933e55 (diff) | |
download | plus-49540a3cac67413e8639ba371782e3635ece74df.tar.gz plus-49540a3cac67413e8639ba371782e3635ece74df.tar.bz2 plus-49540a3cac67413e8639ba371782e3635ece74df.tar.xz plus-49540a3cac67413e8639ba371782e3635ece74df.zip |
Fix code style.
Diffstat (limited to 'src/gui/models')
-rw-r--r-- | src/gui/models/shopitems.cpp | 8 |
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); |