summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
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();