summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-01-20 19:01:23 +0300
committerAndrei Karas <akaras@inbox.ru>2013-01-20 19:29:26 +0300
commit531433248fbad49e2b8e9d90de9855f3ea9b2257 (patch)
tree33937a65d8b18934879824fa4c2a6183d53d5e73 /src/gui/setup.cpp
parent48071e171de41a23197c7328ba038331a936e0eb (diff)
downloadplus-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/setup.cpp')
-rw-r--r--src/gui/setup.cpp11
1 files changed, 3 insertions, 8 deletions
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<SetupTab*>::const_iterator i = mTabs.begin(),
- i_end = mTabs.end();
- i != i_end; ++i)
+ FOR_EACH (std::list<SetupTab*>::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<Window*>::const_iterator it = mWindowsToReset.begin(),
- it_end = mWindowsToReset.end();
- it != it_end; ++it)
+ FOR_EACH (std::list<Window*>::const_iterator, it, mWindowsToReset)
{
if (*it)
(*it)->resetToDefaultSize();
@@ -187,8 +183,7 @@ void Setup::setInGame(const bool inGame)
void Setup::externalUpdate()
{
- for (std::list<SetupTab*>::const_iterator it = mTabs.begin(),
- it_end = mTabs.end(); it != it_end; ++ it)
+ FOR_EACH (std::list<SetupTab*>::const_iterator, it, mTabs)
{
if (*it)
(*it)->externalUpdated();