From 23fc96c3e8c252edbf2e7c22cefab633a0474410 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 8 May 2008 11:50:34 +0000 Subject: (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window. --- src/terraform_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/terraform_gui.cpp') 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(&_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(&_scen_edit_land_gen_desc, 0); } -- cgit v1.2.3-54-g00ecf