summaryrefslogtreecommitdiff
path: root/src/resources/wallpaper.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-01-20 20:43:54 +0300
committerAndrei Karas <akaras@inbox.ru>2013-01-20 23:48:07 +0300
commit2744e4fa8f39cd06bfe557a5a3881830bd11501c (patch)
tree2ec96c6ee820cfe0e5e76480fe828501bf555a4b /src/resources/wallpaper.cpp
parent531433248fbad49e2b8e9d90de9855f3ea9b2257 (diff)
downloadplus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.gz
plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.bz2
plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.tar.xz
plus-2744e4fa8f39cd06bfe557a5a3881830bd11501c.zip
Last part with FOR_EACH changes.
Diffstat (limited to 'src/resources/wallpaper.cpp')
-rw-r--r--src/resources/wallpaper.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/resources/wallpaper.cpp b/src/resources/wallpaper.cpp
index 32f4f1e10..381fe7466 100644
--- a/src/resources/wallpaper.cpp
+++ b/src/resources/wallpaper.cpp
@@ -142,9 +142,7 @@ std::string Wallpaper::getWallpaper(const int width, const int height)
// Wallpaper filename container
StringVect wallPaperVector;
- for (std::vector<WallpaperData>::const_iterator
- iter = wallpaperData.begin(), iter_end = wallpaperData.end();
- iter != iter_end; ++iter)
+ FOR_EACH (std::vector<WallpaperData>::const_iterator, iter, wallpaperData)
{
wp = *iter;
if (wp.width <= width && wp.height <= height)