summaryrefslogtreecommitdiff
path: root/src/industry_gui.cpp
diff options
context:
space:
mode:
authorglx22 <glx@openttd.org>2021-06-13 02:41:41 +0200
committerLoïc Guilloux <glx22@users.noreply.github.com>2021-07-09 21:36:09 +0200
commit5844027eb8588197d82fe896f027182621c4f923 (patch)
tree1c7def8d614ade7d98ab97d42651a152b34eafe7 /src/industry_gui.cpp
parent87eb997be0ffb8a62f31ed222e41a10a2622437f (diff)
downloadopenttd-5844027eb8588197d82fe896f027182621c4f923.tar.xz
Codechange: Remove FOR_ALL_SORTED_STANDARD_CARGOSPECS
Diffstat (limited to 'src/industry_gui.cpp')
-rw-r--r--src/industry_gui.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp
index 648939975..5757a3048 100644
--- a/src/industry_gui.cpp
+++ b/src/industry_gui.cpp
@@ -1375,8 +1375,7 @@ protected:
filter_items++;
/* Collect available cargo types for filtering. */
- const CargoSpec *cs;
- FOR_ALL_SORTED_STANDARD_CARGOSPECS(cs) {
+ for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
this->cargo_filter[filter_items] = cs->Index();
this->cargo_filter_texts[filter_items] = cs->name;
filter_items++;
@@ -2995,8 +2994,7 @@ struct IndustryCargoesWindow : public Window {
case WID_IC_CARGO_DROPDOWN: {
DropDownList lst;
- const CargoSpec *cs;
- FOR_ALL_SORTED_STANDARD_CARGOSPECS(cs) {
+ for (const CargoSpec *cs : _sorted_standard_cargo_specs) {
lst.emplace_back(new DropDownListStringItem(cs->name, cs->Index(), false));
}
if (!lst.empty()) {