src/terraform_gui.cpp
changeset 9143 029e126e3439
parent 9127 14f21c5954ee
child 9149 b4c7d2c33bda
--- a/src/terraform_gui.cpp	Thu May 08 11:31:41 2008 +0000
+++ b/src/terraform_gui.cpp	Thu May 08 11:50:34 2008 +0000
@@ -304,7 +304,7 @@
 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 @@
 
 void ShowEditorTerraformToolbar()
 {
-	AllocateWindowDescFront(&_scen_edit_land_gen_desc, 0);
+	AllocateWindowDescFront<Window>(&_scen_edit_land_gen_desc, 0);
 }