summaryrefslogtreecommitdiff
path: root/ship_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 /ship_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 'ship_gui.c')
-rw-r--r--ship_gui.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 72873bd22..dd88b960b 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -251,11 +251,6 @@ do_change_service_int:
}
} break;
- case WE_4:
- if (FindWindowById(WC_VEHICLE_VIEW, w->window_number) == NULL)
- DeleteWindow(w);
- break;
-
case WE_ON_EDIT_TEXT:
if (e->edittext.str[0] != '\0') {
_cmd_text = e->edittext.str;
@@ -394,12 +389,6 @@ static void NewShipWndProc(Window *w, WindowEvent *e)
}
break;
- case WE_4:
- if (w->window_number != 0 && !FindWindowById(WC_VEHICLE_DEPOT, w->window_number)) {
- DeleteWindow(w);
- }
- break;
-
case WE_ON_EDIT_TEXT:
if (e->edittext.str[0] != '\0') {
_cmd_text = e->edittext.str;