diff options
author | rubidium <rubidium@openttd.org> | 2008-05-08 11:50:34 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-08 11:50:34 +0000 |
commit | 92aac531c2fdc3e58c108a35e66f723360f46a9a (patch) | |
tree | 23ad171b2093a5c5980b9d912bf60056102af9fa /src/rail_gui.cpp | |
parent | 51cda2252ceb088d75f25074f1e83e8eec5f18b6 (diff) | |
download | openttd-92aac531c2fdc3e58c108a35e66f723360f46a9a.tar.xz |
(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
Diffstat (limited to 'src/rail_gui.cpp')
-rw-r--r-- | src/rail_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp index 2fcbc489c..a15e86382 100644 --- a/src/rail_gui.cpp +++ b/src/rail_gui.cpp @@ -752,7 +752,7 @@ void ShowBuildRailToolbar(RailType railtype, int button) if (button < 0 || !(w = FindWindowById(WC_BUILD_TOOLBAR, TRANSPORT_RAIL))) { DeleteWindowByClass(WC_BUILD_TOOLBAR); _cur_railtype = railtype; - w = AllocateWindowDescFront(&_build_rail_desc, TRANSPORT_RAIL); + w = AllocateWindowDescFront<Window>(&_build_rail_desc, TRANSPORT_RAIL); SetupRailToolbar(railtype, w); } |