summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-11 14:56:21 +0000
committertron <tron@openttd.org>2006-06-11 14:56:21 +0000
commit88f9473c85661a3ca7a53d2d3d71efd2dc0b242b (patch)
tree7c1dccd5040688868c9052309c20a360153406e5 /order_gui.c
parent0f5453d95b9ba0105fa504be68b782dd0c8c5987 (diff)
downloadopenttd-88f9473c85661a3ca7a53d2d3d71efd2dc0b242b.tar.xz
(svn r5225) Some windows periodically check if their parent exists - if not they close themselves
This is unnecessary, because their parents already close them when they get closed Therefore remove the code for the periodic checks
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/order_gui.c b/order_gui.c
index 21f151218..f8f895288 100644
--- a/order_gui.c
+++ b/order_gui.c
@@ -487,11 +487,6 @@ static void OrdersWndProc(Window *w, WindowEvent *e)
}
} break;
- case WE_4: {
- if (FindWindowById(WC_VEHICLE_VIEW, w->window_number) == NULL)
- DeleteWindow(w);
- } break;
-
case WE_PLACE_OBJ: {
OrdersPlaceObj(GetVehicle(w->window_number), e->place.tile, w);
} break;