(svn r8335) -Feature: the build ship window is now also resizable horizontally and contains sorting options

-Codechange: the build ship window is merged into build_vehicle_gui.cpp
This commit is contained in:
bjarni
2007-01-22 00:26:46 +00:00
parent 1f32ce7e89
commit 14b2998023
6 changed files with 110 additions and 189 deletions

View File

@@ -737,7 +737,7 @@ static void DepotWndProc(Window *w, WindowEvent *e)
ResetObjectToPlace();
switch (WP(w, depot_d).type) {
case VEH_Road: ShowBuildRoadVehWindow(w->window_number); break;
case VEH_Ship: ShowBuildShipWindow(w->window_number); break;
case VEH_Ship:
case VEH_Train:
case VEH_Aircraft:
ShowBuildVehicleWindow(w->window_number, WP(w, depot_d).type);