summaryrefslogtreecommitdiff
path: root/train_gui.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2006-10-10 08:34:14 +0000
committerbjarni <bjarni@openttd.org>2006-10-10 08:34:14 +0000
commit239991944de2569740d753e33b67d990fd3b21f7 (patch)
treee93e939cec0a1f30c066d56f0f30e274439dec8e /train_gui.c
parent67ac92e6528a95f8eb3c6a5a315f24bd6e02475b (diff)
downloadopenttd-239991944de2569740d753e33b67d990fd3b21f7.tar.xz
(svn r6716) -Code cleanup: [aircraft/train build windows] fixed a spelling mistake in the widget names (the game itself is unaffected by this)
Diffstat (limited to 'train_gui.c')
-rw-r--r--train_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/train_gui.c b/train_gui.c
index cd9eff36f..292d88f5c 100644
--- a/train_gui.c
+++ b/train_gui.c
@@ -27,7 +27,7 @@
typedef enum BuildTrainWidgets {
BUILD_TRAIN_WIDGET_CLOSEBOX = 0,
BUILD_TRAIN_WIDGET_CAPTION,
- BUILD_TRAIN_WIDGET_SORT_ASSENDING_DESENTING,
+ BUILD_TRAIN_WIDGET_SORT_ASSENDING_DESCENDING,
BUILD_TRAIN_WIDGET_SORT_TEXT,
BUILD_TRAIN_WIDGET_SORT_DROPDOWN,
BUILD_TRAIN_WIDGET_LIST,
@@ -563,7 +563,7 @@ static void NewRailVehicleWndProc(Window *w, WindowEvent *e)
case WE_CLICK: {
switch (e->we.click.widget) {
- case BUILD_TRAIN_WIDGET_SORT_ASSENDING_DESENTING:
+ case BUILD_TRAIN_WIDGET_SORT_ASSENDING_DESCENDING:
WP(w,buildvehicle_d).decenting_sort_order = !WP(w,buildvehicle_d).decenting_sort_order;
_last_sort_order = WP(w,buildvehicle_d).decenting_sort_order;
SortTrainBuildList(w);