changeset 4745:ee545ea742b0 draft

(svn r6657) -Change: [depot window] sell all vehicles in depot confirm window now opens on top of depot window instead of in the middle of the screen
author bjarni <bjarni@openttd.org>
date Thu, 05 Oct 2006 23:10:58 +0000
parents 96b9edc01601
children 8e2c43119d71
files depot_gui.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/depot_gui.c
+++ b/depot_gui.c
@@ -212,7 +212,7 @@
 
 static const WindowDesc _depot_sell_all_desc = {
 	WDP_CENTER, WDP_CENTER, 300, 72,
-	WC_DEPOT_SELL_ALL,0,
+	WC_DEPOT_SELL_ALL, WC_VEHICLE_DEPOT,
 	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
 	_depot_sell_all_widgets,
 	DepotSellAllWndProc
@@ -222,6 +222,7 @@
 {
 	Window *w;
 
+	_alloc_wnd_parent_num = tile;
 	w = AllocateWindowDescFront(&_depot_sell_all_desc, tile);
 
 	if (w != NULL) {