summaryrefslogtreecommitdiff
path: root/src/station_gui.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-15 21:56:00 +0000
committerrubidium <rubidium@openttd.org>2011-12-15 21:56:00 +0000
commit3d88c74389ec978bb198415816364898963bb979 (patch)
tree828173a0f2926b9082ff0ec1a08a293b213defba /src/station_gui.h
parentdf0afdf0dca6b3d4f621248ada2aed73d7481c66 (diff)
downloadopenttd-3d88c74389ec978bb198415816364898963bb979.tar.xz
(svn r23526) -Codechange: unify cargos vs cargoes
Diffstat (limited to 'src/station_gui.h')
-rw-r--r--src/station_gui.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/station_gui.h b/src/station_gui.h
index dd442dce4..32e33d344 100644
--- a/src/station_gui.h
+++ b/src/station_gui.h
@@ -21,8 +21,8 @@ enum StationViewWidgets {
SVW_CAPTION = 0, ///< Caption of the window
SVW_WAITING = 1, ///< List of waiting cargo
SVW_SCROLLBAR = 2, ///< Scrollbar
- SVW_ACCEPTLIST = 3, ///< List of accepted cargos
- SVW_RATINGLIST = 3, ///< Ratings of cargos
+ SVW_ACCEPTLIST = 3, ///< List of accepted cargoes
+ SVW_RATINGLIST = 3, ///< Ratings of cargoes
SVW_LOCATION = 4, ///< 'Location' button
SVW_RATINGS = 5, ///< 'Ratings' button
SVW_ACCEPTS = 5, ///< 'Accepts' button
@@ -35,9 +35,9 @@ enum StationViewWidgets {
/** Types of cargo to display for station coverage. */
enum StationCoverageType {
- SCT_PASSENGERS_ONLY, ///< Draw only passenger class cargos.
- SCT_NON_PASSENGERS_ONLY, ///< Draw all non-passenger class cargos.
- SCT_ALL, ///< Draw all cargos.
+ SCT_PASSENGERS_ONLY, ///< Draw only passenger class cargoes.
+ SCT_NON_PASSENGERS_ONLY, ///< Draw all non-passenger class cargoes.
+ SCT_ALL, ///< Draw all cargoes.
};
int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);