summaryrefslogtreecommitdiff
path: root/ship_gui.c
diff options
context:
space:
mode:
authorludde <ludde@openttd.org>2005-08-01 16:31:19 +0000
committerludde <ludde@openttd.org>2005-08-01 16:31:19 +0000
commit29564f9fcfc6e2dffb7afa196dbcabb04c99bee7 (patch)
treedc182cc3e9eea6a1776b7fdc84014ec094051275 /ship_gui.c
parent91353c841f3adde7f601ab4185e3486a034dbd04 (diff)
downloadopenttd-29564f9fcfc6e2dffb7afa196dbcabb04c99bee7.tar.xz
(svn r2781) Fix some of the issues with variables in .h files.
Diffstat (limited to 'ship_gui.c')
-rw-r--r--ship_gui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 5a5872f28..ecd44cb13 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -511,7 +511,7 @@ static void ShipViewWndProc(Window *w, WindowEvent *e) {
case OT_LEAVESTATION:
str = STR_882F_LOADING_UNLOADING;
break;
-
+
default:
if (v->num_orders == 0) {
str = STR_NO_ORDERS + _patches.vehicle_speed;
@@ -792,11 +792,11 @@ static void ShipDepotWndProc(Window *w, WindowEvent *e) {
ResetObjectToPlace();
ShowBuildShipWindow(w->window_number);
break;
-
+
case 8: /* clone button */
InvalidateWidget(w, 8);
TOGGLEBIT(w->click_state, 8);
-
+
if (HASBIT(w->click_state, 8)) {
_place_clicked_vehicle = NULL;
SetObjectToPlaceWnd(SPR_CURSOR_CLONE, VHM_RECT, w);
@@ -811,7 +811,7 @@ static void ShipDepotWndProc(Window *w, WindowEvent *e) {
break;
}
break;
-
+
case WE_PLACE_OBJ: {
//ClonePlaceObj(e->place.tile, w);
ClonePlaceObj(w->window_number, w);
@@ -821,7 +821,7 @@ static void ShipDepotWndProc(Window *w, WindowEvent *e) {
CLRBIT(w->click_state, 8);
InvalidateWidget(w, 8);
} break;
-
+
// check if a vehicle in a depot was clicked..
case WE_MOUSELOOP: {
Vehicle *v = _place_clicked_vehicle;