From 531433248fbad49e2b8e9d90de9855f3ea9b2257 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 20 Jan 2013 19:01:23 +0300 Subject: Another part with FOR_EACH changes. --- src/gui/helpwindow.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/gui/helpwindow.cpp') diff --git a/src/gui/helpwindow.cpp b/src/gui/helpwindow.cpp index a9aead461..3dcc19dbb 100644 --- a/src/gui/helpwindow.cpp +++ b/src/gui/helpwindow.cpp @@ -132,8 +132,7 @@ void HelpWindow::loadTags() helpPath = paths.getStringValue("help"); StringVect lines; ResourceManager::loadTextFile(helpPath + "tags.idx", lines); - for (StringVectCIter it = lines.begin(), it_end = lines.end(); - it != it_end; ++ it) + FOR_EACH (StringVectCIter, it, lines) { const std::string &str = *it; const size_t idx = str.find('|'); @@ -164,8 +163,7 @@ void HelpWindow::search(const std::string &text0) mBrowserBox->clearRows(); loadFile("header"); loadFile("searchmany"); - for (HelpNamesCIter it = names.begin(), it_end = names.end(); - it != it_end; ++ it) + FOR_EACH (HelpNamesCIter, it, names) { const char *const str = (*it).c_str(); mBrowserBox->addRow(strprintf(" -> @@%s|%s@@", str, -- cgit v1.2.3-60-g2f50