summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-05-08 11:50:34 +0000
committerrubidium <rubidium@openttd.org>2008-05-08 11:50:34 +0000
commit23fc96c3e8c252edbf2e7c22cefab633a0474410 (patch)
tree23ad171b2093a5c5980b9d912bf60056102af9fa /src/depot_gui.cpp
parent2eef026fe35b9236606062f7d8a59d5661a5c748 (diff)
downloadopenttd-23fc96c3e8c252edbf2e7c22cefab633a0474410.tar.xz
(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 571bcb210..26cd8ef1c 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -997,13 +997,13 @@ void ShowDepotWindow(TileIndex tile, VehicleType type)
switch (type) {
default: NOT_REACHED();
case VEH_TRAIN:
- w = AllocateWindowDescFront(&_train_depot_desc, tile); break;
+ w = AllocateWindowDescFront<Window>(&_train_depot_desc, tile); break;
case VEH_ROAD:
- w = AllocateWindowDescFront(&_road_depot_desc, tile); break;
+ w = AllocateWindowDescFront<Window>(&_road_depot_desc, tile); break;
case VEH_SHIP:
- w = AllocateWindowDescFront(&_ship_depot_desc, tile); break;
+ w = AllocateWindowDescFront<Window>(&_ship_depot_desc, tile); break;
case VEH_AIRCRAFT:
- w = AllocateWindowDescFront(&_aircraft_depot_desc, tile); break;
+ w = AllocateWindowDescFront<Window>(&_aircraft_depot_desc, tile); break;
}
if (w != NULL) {