From 51cda2252ceb088d75f25074f1e83e8eec5f18b6 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 8 May 2008 11:31:41 +0000 Subject: (svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor. --- src/road_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/road_gui.cpp') diff --git a/src/road_gui.cpp b/src/road_gui.cpp index c20a6e03e..adad95164 100644 --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -817,7 +817,7 @@ static const WindowDesc _build_tram_depot_desc = { static void ShowRoadDepotPicker() { - AllocateWindowDesc(_cur_roadtype == ROADTYPE_ROAD ? &_build_road_depot_desc : &_build_tram_depot_desc); + new Window(_cur_roadtype == ROADTYPE_ROAD ? &_build_road_depot_desc : &_build_tram_depot_desc); } /** Enum referring to the widgets of the build road station window */ @@ -966,7 +966,7 @@ static const WindowDesc _rv_station_picker_desc = { static void ShowRVStationPicker(RoadStopType rs) { - Window *w = AllocateWindowDesc(&_rv_station_picker_desc); + Window *w = new Window(&_rv_station_picker_desc); if (w == NULL) return; w->window_class = (rs == ROADSTOP_BUS) ? WC_BUS_STATION : WC_TRUCK_STATION; -- cgit v1.2.3-54-g00ecf