summaryrefslogtreecommitdiff
path: root/src/vehicle_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-09-08 10:10:31 +0000
committerrubidium <rubidium@openttd.org>2007-09-08 10:10:31 +0000
commit305bdb70fd98fed4c46a7684ed7d221c76fe7e7a (patch)
treec291db06b6f4edfc5b805a7f9e8085dde03e7e30 /src/vehicle_gui.cpp
parentc97804461eb696393a9bf4acc2f9b57738349066 (diff)
downloadopenttd-305bdb70fd98fed4c46a7684ed7d221c76fe7e7a.tar.xz
(svn r11060) -Codechange: replace some magic numbers with the right enumified constants.
Diffstat (limited to 'src/vehicle_gui.cpp')
-rw-r--r--src/vehicle_gui.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp
index 316295ef9..7f9dac2b2 100644
--- a/src/vehicle_gui.cpp
+++ b/src/vehicle_gui.cpp
@@ -1457,7 +1457,7 @@ static void DrawVehicleDetailsWindow(Window *w)
SetWindowWidgetDisabledState(w, VLD_WIDGET_RENAME_VEHICLE, v->owner != _local_player);
if (v->type == VEH_TRAIN) {
- DisableWindowWidget(w, det_tab + 9);
+ DisableWindowWidget(w, det_tab + VLD_WIDGET_DETAILS_CARGO_CARRIED);
SetVScrollCount(w, GetTrainDetailsWndVScroll(v->index, det_tab));
}
@@ -1600,7 +1600,7 @@ static void VehicleDetailsWndProc(Window *w, WindowEvent *e)
e->we.click.widget,
WIDGET_LIST_END);
- WP(w, vehicledetails_d).tab = e->we.click.widget - 9;
+ WP(w, vehicledetails_d).tab = e->we.click.widget - VLD_WIDGET_DETAILS_CARGO_CARRIED;
SetWindowDirty(w);
break;
}
@@ -1614,7 +1614,7 @@ static void VehicleDetailsWndProc(Window *w, WindowEvent *e)
break;
case WE_RESIZE:
- if (e->we.sizing.diff.x != 0) ResizeButtons(w, 9, 12);
+ if (e->we.sizing.diff.x != 0) ResizeButtons(w, VLD_WIDGET_DETAILS_CARGO_CARRIED, VLD_WIDGET_DETAILS_TOTAL_CARGO);
if (e->we.sizing.diff.y == 0) break;
w->vscroll.cap += e->we.sizing.diff.y / 14;