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/setup.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/gui/setup.cpp') diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 7eef2d856..777bdc752 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -109,9 +109,7 @@ Setup::Setup(): mTabs.push_back(new Setup_Theme(this)); mTabs.push_back(new Setup_Other(this)); - for (std::list::const_iterator i = mTabs.begin(), - i_end = mTabs.end(); - i != i_end; ++i) + FOR_EACH (std::list::const_iterator, i, mTabs) { SetupTab *const tab = *i; mPanel->addTab(tab->getName(), tab); @@ -170,9 +168,7 @@ void Setup::action(const gcn::ActionEvent &event) if (!statusWindow) return; - for (std::list::const_iterator it = mWindowsToReset.begin(), - it_end = mWindowsToReset.end(); - it != it_end; ++it) + FOR_EACH (std::list::const_iterator, it, mWindowsToReset) { if (*it) (*it)->resetToDefaultSize(); @@ -187,8 +183,7 @@ void Setup::setInGame(const bool inGame) void Setup::externalUpdate() { - for (std::list::const_iterator it = mTabs.begin(), - it_end = mTabs.end(); it != it_end; ++ it) + FOR_EACH (std::list::const_iterator, it, mTabs) { if (*it) (*it)->externalUpdated(); -- cgit v1.2.3-60-g2f50