(svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.

This commit is contained in:
rubidium
2008-05-08 11:50:34 +00:00
parent 2eef026fe3
commit 23fc96c3e8
28 changed files with 75 additions and 76 deletions

View File

@@ -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);
}