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/dock_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dock_gui.cpp') diff --git a/src/dock_gui.cpp b/src/dock_gui.cpp index 70530dcb5..b5fa85d5d 100644 --- a/src/dock_gui.cpp +++ b/src/dock_gui.cpp @@ -309,7 +309,7 @@ static const WindowDesc _build_dock_station_desc = { static void ShowBuildDockStationPicker() { - AllocateWindowDesc(&_build_dock_station_desc); + new Window(&_build_dock_station_desc); } static void UpdateDocksDirection() @@ -379,7 +379,7 @@ static const WindowDesc _build_docks_depot_desc = { static void ShowBuildDocksDepotPicker() { - AllocateWindowDesc(&_build_docks_depot_desc); + new Window(&_build_docks_depot_desc); UpdateDocksDirection(); } -- cgit v1.2.3-54-g00ecf