summaryrefslogtreecommitdiff
path: root/src/gui/shopwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-01-15 01:07:47 +0200
committerAndrei Karas <akaras@inbox.ru>2011-01-15 02:05:50 +0200
commite2150d04662a4ba8b5304dabcc74be0bacded5b7 (patch)
treecbeb05c2f056a7d5ac4a08e7b80799b5cfd4785b /src/gui/shopwindow.cpp
parentedda37acb9d66f2751ef712c83dced62428fa685 (diff)
downloadplus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.gz
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.bz2
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.tar.xz
plus-e2150d04662a4ba8b5304dabcc74be0bacded5b7.zip
Fix code style, apply some fixes after checking with cppcheck from git.
Diffstat (limited to 'src/gui/shopwindow.cpp')
-rw-r--r--src/gui/shopwindow.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/shopwindow.cpp b/src/gui/shopwindow.cpp
index 410e79dbb..e670e9d15 100644
--- a/src/gui/shopwindow.cpp
+++ b/src/gui/shopwindow.cpp
@@ -359,7 +359,7 @@ void ShopWindow::saveList()
std::vector<ShopItem*> items = mBuyShopItems->items();
std::vector<ShopItem*>::iterator it;
- for (it = items.begin(); it != items.end(); it++)
+ for (it = items.begin(); it != items.end(); ++it)
{
ShopItem *item = *(it);
if (item)
@@ -367,7 +367,7 @@ void ShopWindow::saveList()
}
items = mSellShopItems->items();
- for (it = items.begin(); it != items.end(); it++)
+ for (it = items.begin(); it != items.end(); ++it)
{
ShopItem *sellItem = *(it);
ShopItem *buyItem = mapItems[sellItem->getId()];
@@ -392,7 +392,7 @@ void ShopWindow::saveList()
}
std::map<int, ShopItem*>::iterator mapIt;
- for (mapIt = mapItems.begin(); mapIt != mapItems.end(); mapIt++)
+ for (mapIt = mapItems.begin(); mapIt != mapItems.end(); ++mapIt)
{
ShopItem *buyItem = (*mapIt).second;
if (buyItem)
@@ -433,7 +433,7 @@ void ShopWindow::announce(ShopItems *list, int mode)
std::vector<ShopItem*> items = list->items();
std::vector<ShopItem*>::iterator it;
- for (it = items.begin(); it != items.end(); it++)
+ for (it = items.begin(); it != items.end(); ++it)
{
ShopItem *item = *(it);
if (item->getQuantity() > 1)
@@ -499,7 +499,7 @@ void ShopWindow::giveList(const std::string &nick, int mode)
std::vector<ShopItem*> items = list->items();
std::vector<ShopItem*>::iterator it;
- for (it = items.begin(); it != items.end(); it++)
+ for (it = items.begin(); it != items.end(); ++it)
{
ShopItem *item = *(it);
if (!item)
@@ -752,7 +752,7 @@ bool ShopWindow::findShopItem(ShopItem *shopItem, int mode)
items = mBuyShopItems->items();
}
- for (it = items.begin(); it != items.end(); it++)
+ for (it = items.begin(); it != items.end(); ++it)
{
ShopItem *item = *(it);
if (!item)