diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-20 19:01:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-20 19:29:26 +0300 |
commit | 531433248fbad49e2b8e9d90de9855f3ea9b2257 (patch) | |
tree | 33937a65d8b18934879824fa4c2a6183d53d5e73 /src/gui/shopwindow.cpp | |
parent | 48071e171de41a23197c7328ba038331a936e0eb (diff) | |
download | plus-531433248fbad49e2b8e9d90de9855f3ea9b2257.tar.gz plus-531433248fbad49e2b8e9d90de9855f3ea9b2257.tar.bz2 plus-531433248fbad49e2b8e9d90de9855f3ea9b2257.tar.xz plus-531433248fbad49e2b8e9d90de9855f3ea9b2257.zip |
Another part with FOR_EACH changes.
Diffstat (limited to 'src/gui/shopwindow.cpp')
-rw-r--r-- | src/gui/shopwindow.cpp | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/src/gui/shopwindow.cpp b/src/gui/shopwindow.cpp index 548c99628..c2bc4d336 100644 --- a/src/gui/shopwindow.cpp +++ b/src/gui/shopwindow.cpp @@ -413,8 +413,7 @@ void ShopWindow::saveList() } std::vector<ShopItem*> items = mBuyShopItems->items(); - for (std::vector<ShopItem*>::const_iterator it = items.begin(), - it_end = items.end(); it != it_end; ++it) + FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items) { ShopItem *const item = *(it); if (item) @@ -422,8 +421,7 @@ void ShopWindow::saveList() } items = mSellShopItems->items(); - for (std::vector<ShopItem*>::const_iterator it = items.begin(), - it_end = items.end(); it != it_end; ++it) + FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items) { if (!(*it)) continue; @@ -487,8 +485,7 @@ void ShopWindow::announce(ShopItems *const list, const int mode) std::vector<ShopItem*> items = list->items(); - for (std::vector<ShopItem*>::const_iterator it = items.begin(), - it_end = items.end(); it != it_end; ++it) + FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items) { const ShopItem *const item = *(it); if (item->getQuantity() > 1) @@ -553,8 +550,7 @@ void ShopWindow::giveList(const std::string &nick, const int mode) std::vector<ShopItem*> items = list->items(); - for (std::vector<ShopItem*>::const_iterator it = items.begin(), - it_end = items.end(); it != it_end; ++it) + FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items) { const ShopItem *const item = *(it); if (!item) @@ -816,8 +812,7 @@ bool ShopWindow::findShopItem(const ShopItem *const shopItem, const int mode) items = mBuyShopItems->items(); } - for (std::vector<ShopItem*>::const_iterator it = items.begin(), - it_end = items.end(); it != it_end; ++ it) + FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items) { const ShopItem *const item = *(it); if (!item) |