summaryrefslogtreecommitdiff
path: root/src/build_vehicle_gui.cpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-04-02 12:20:41 +0000
committerterkhen <terkhen@openttd.org>2010-04-02 12:20:41 +0000
commit8660890bbb82638dcb81f713047aa3e16ad82cf4 (patch)
tree063f78c516c6e1b24d983ec760b91f16e97f6fb1 /src/build_vehicle_gui.cpp
parent316384a26f5fd3d9e22a004ba801a3744a6b1cc6 (diff)
downloadopenttd-8660890bbb82638dcb81f713047aa3e16ad82cf4.tar.xz
(svn r19539) -Codechange: Use a macro to loop through the list of sorted cargo specifications.
Diffstat (limited to 'src/build_vehicle_gui.cpp')
-rw-r--r--src/build_vehicle_gui.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp
index e4cfba54d..351941838 100644
--- a/src/build_vehicle_gui.cpp
+++ b/src/build_vehicle_gui.cpp
@@ -853,9 +853,10 @@ struct BuildVehicleWindow : Window {
}
/* Collect available cargo types for filtering. */
- for (int i = 0; i < _sorted_cargo_specs_size; i++) {
- this->cargo_filter[filter_items] = _sorted_cargo_specs[i]->Index();
- this->cargo_filter_texts[filter_items] = _sorted_cargo_specs[i]->name;
+ const CargoSpec *cs;
+ FOR_ALL_SORTED_CARGOSPECS(cs) {
+ this->cargo_filter[filter_items] = cs->Index();
+ this->cargo_filter_texts[filter_items] = cs->name;
filter_items++;
}