summaryrefslogtreecommitdiff
path: root/src/dock_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 11:31:41 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 11:31:41 +0000
commit2eef026fe35b9236606062f7d8a59d5661a5c748 (patch)
tree34abcc3662d6f35a9ace2d7f77586e68242b96e7 /src/dock_gui.cpp
parentd3650ecb3a42529c720634dcdc982d046a47a1ee (diff)
downloadopenttd-2eef026fe35b9236606062f7d8a59d5661a5c748.tar.xz
(svn r13004) -Codechange: replace AllocateWindow and AllocateWindowDesc with a Window constructor.
Diffstat (limited to 'src/dock_gui.cpp')
-rw-r--r--src/dock_gui.cpp4
1 files changed, 2 insertions, 2 deletions
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();
}