summaryrefslogtreecommitdiff
path: root/src/utils/paths.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/utils/paths.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/utils/paths.cpp')
-rw-r--r--src/utils/paths.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/paths.cpp b/src/utils/paths.cpp
index bf4cd5e48..6f10262f6 100644
--- a/src/utils/paths.cpp
+++ b/src/utils/paths.cpp
@@ -155,8 +155,7 @@ std::string getDesktopDir()
file = std::string(xdg) + "/user-dirs.dirs";
StringVect arr = ResourceManager::loadTextFileLocal(file);
- for (StringVectCIter it = arr.begin(), it_end = arr.end();
- it != it_end; ++ it)
+ FOR_EACH (StringVectCIter, it, arr)
{
std::string str = *it;
if (findCutFirst(str, "XDG_DESKTOP_DIR=\""))