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