diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-08 22:46:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-08 22:46:48 +0300 |
commit | 6d4da51f0fdcecc2d4398f60dbca43f499fdbe16 (patch) | |
tree | c71c7c6e49ed36a55c6b6a2b1ba70073300634dd /src/gui/models | |
parent | 4125ac707288a244a7175b755d74dd963e762f56 (diff) | |
download | plus-6d4da51f0fdcecc2d4398f60dbca43f499fdbe16.tar.gz plus-6d4da51f0fdcecc2d4398f60dbca43f499fdbe16.tar.bz2 plus-6d4da51f0fdcecc2d4398f60dbca43f499fdbe16.tar.xz plus-6d4da51f0fdcecc2d4398f60dbca43f499fdbe16.zip |
Fix code style in gui.
Diffstat (limited to 'src/gui/models')
-rw-r--r-- | src/gui/models/shopitems.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/models/shopitems.cpp b/src/gui/models/shopitems.cpp index 492409e76..58bfe0023 100644 --- a/src/gui/models/shopitems.cpp +++ b/src/gui/models/shopitems.cpp @@ -41,8 +41,8 @@ ShopItems::~ShopItems() std::string ShopItems::getElementAt(int i) { - if (i < 0 || static_cast<unsigned>(i) >= mShopItems.size() - || !mShopItems.at(i)) + if (i < 0 || static_cast<unsigned>(i) + >= static_cast<unsigned int>(mShopItems.size()) || !mShopItems.at(i)) { return ""; } @@ -85,7 +85,7 @@ void ShopItems::addItem2(const int inventoryIndex, const int id, ShopItem *ShopItems::at(unsigned int i) const { - if (i >= mShopItems.size()) + if (i >= static_cast<unsigned int>(mShopItems.size())) return nullptr; return mShopItems.at(i); @@ -93,7 +93,7 @@ ShopItem *ShopItems::at(unsigned int i) const void ShopItems::erase(const unsigned int i) { - if (i >= mShopItems.size()) + if (i >= static_cast<unsigned int>(mShopItems.size())) return; mShopItems.erase(mShopItems.begin() + i); @@ -101,7 +101,7 @@ void ShopItems::erase(const unsigned int i) void ShopItems::del(const unsigned int i) { - if (i >= mShopItems.size()) + if (i >= static_cast<unsigned int>(mShopItems.size())) return; ShopItem *item = *(mShopItems.begin() + i); |