summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-26 16:21:43 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-01-29 14:18:06 +0100
commite7c285e3423ddd660447f6a6fc6bbae25f99f386 (patch)
tree1d700f09a5e96a2a0d390af30581097bdec0bf77 /src/gui/setup.cpp
parente1a7c1d0ca30c2c4a293ffbff6b9c51c881d23e3 (diff)
downloadMana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.gz
Mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.bz2
Mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.tar.xz
Mana-e7c285e3423ddd660447f6a6fc6bbae25f99f386.zip
Apply C++11 fixits
modernize-loop-convert modernize-deprecated-headers
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r--src/gui/setup.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp
index daced0fa..357f1921 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -77,10 +77,8 @@ Setup::Setup():
mTabs.push_back(new Setup_Colors);
mTabs.push_back(new Setup_Players);
- for (auto i = mTabs.begin(), i_end = mTabs.end();
- i != i_end; ++i)
+ for (auto tab : mTabs)
{
- SetupTab *tab = *i;
panel->addTab(tab->getName(), tab);
}
@@ -119,10 +117,9 @@ void Setup::action(const gcn::ActionEvent &event)
if (!statusWindow)
return;
- for (auto it = mWindowsToReset.begin();
- it != mWindowsToReset.end(); it++)
+ for (auto &window : mWindowsToReset)
{
- (*it)->resetToDefaultSize();
+ window->resetToDefaultSize();
}
}
}