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/questswindow.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/questswindow.cpp')
-rw-r--r-- | src/gui/questswindow.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gui/questswindow.cpp b/src/gui/questswindow.cpp index cb03904a9..911394a56 100644 --- a/src/gui/questswindow.cpp +++ b/src/gui/questswindow.cpp @@ -277,8 +277,7 @@ void QuestsWindow::rebuild(const bool playSound) const int var = (*it).first; const int val = (*it).second; const std::vector<QuestItem*> &quests = mQuests[var]; - for (std::vector<QuestItem*>::const_iterator it2 = quests.begin(), - it2_end = quests.end(); it2 != it2_end; ++ it2) + FOR_EACH (std::vector<QuestItem*>::const_iterator, it2, quests) { if (!*it2) continue; @@ -372,8 +371,7 @@ void QuestsWindow::showQuest(const QuestItem *const quest) const std::vector<QuestItemText> &texts = quest->texts; mText->clearRows(); - for (std::vector<QuestItemText>::const_iterator it = texts.begin(), - it_end = texts.end(); it != it_end; ++ it) + FOR_EACH (std::vector<QuestItemText>::const_iterator, it, texts) { const QuestItemText &data = *it; switch (data.type) |