summaryrefslogtreecommitdiff
path: root/src/signs_gui.cpp
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2019-12-17 19:14:42 +0100
committerNiels Martin Hansen <nielsm@indvikleren.dk>2019-12-21 20:13:03 +0100
commit869581eb238b820574d64cd8dabc9324cd7a0dd5 (patch)
treeb6d3937c8da8ad0f3b477601bb01e05d4c647cec /src/signs_gui.cpp
parentb91abd3af98cca51221210198e2c9607055c19b2 (diff)
downloadopenttd-869581eb238b820574d64cd8dabc9324cd7a0dd5.tar.xz
Codechange: Replace FOR_ALL_SIGNS with range-based for loops
Diffstat (limited to 'src/signs_gui.cpp')
-rw-r--r--src/signs_gui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/signs_gui.cpp b/src/signs_gui.cpp
index 9bd64b7d1..ea3de7008 100644
--- a/src/signs_gui.cpp
+++ b/src/signs_gui.cpp
@@ -60,8 +60,7 @@ struct SignList {
this->signs.clear();
- const Sign *si;
- FOR_ALL_SIGNS(si) this->signs.push_back(si);
+ for (const Sign *si : Sign::Iterate()) this->signs.push_back(si);
this->signs.SetFilterState(true);
this->FilterSignList();