diff options
author | rubidium <rubidium@openttd.org> | 2008-05-08 11:31:41 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-08 11:31:41 +0000 |
commit | 51cda2252ceb088d75f25074f1e83e8eec5f18b6 (patch) | |
tree | 34abcc3662d6f35a9ace2d7f77586e68242b96e7 /src/road_gui.cpp | |
parent | 5a7fcf9aa3ce17e9f8602a682171b30cc8b1a786 (diff) | |
download | openttd-51cda2252ceb088d75f25074f1e83e8eec5f18b6.tar.xz |
(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Diffstat (limited to 'src/road_gui.cpp')
-rw-r--r-- | src/road_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |