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/terraform_gui.cpp | |
parent | 51cda2252ceb088d75f25074f1e83e8eec5f18b6 (diff) | |
download | openttd-92aac531c2fdc3e58c108a35e66f723360f46a9a.tar.xz |
(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
Diffstat (limited to 'src/terraform_gui.cpp')
-rw-r--r-- | src/terraform_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index 81c46959b..12831c293 100644 --- a/src/terraform_gui.cpp +++ b/src/terraform_gui.cpp @@ -304,7 +304,7 @@ static const WindowDesc _terraform_desc = { void ShowTerraformToolbar(Window *link) { if (!IsValidPlayer(_current_player)) return; - Window *w = AllocateWindowDescFront(&_terraform_desc, 0); + Window *w = AllocateWindowDescFront<Window>(&_terraform_desc, 0); if (w != NULL && link != NULL) { /* Align the terraform toolbar under the main toolbar and put the linked * toolbar to left of it @@ -679,5 +679,5 @@ static const WindowDesc _scen_edit_land_gen_desc = { void ShowEditorTerraformToolbar() { - AllocateWindowDescFront(&_scen_edit_land_gen_desc, 0); + AllocateWindowDescFront<Window>(&_scen_edit_land_gen_desc, 0); } |