src/genworld_gui.cpp
changeset 6248 e4a2ed7e5613
parent 6247 7d81e3a5d803
child 6357 f0f5e7d1713c
--- a/src/genworld_gui.cpp	Wed Mar 07 11:47:46 2007 +0000
+++ b/src/genworld_gui.cpp	Wed Mar 07 12:11:48 2007 +0000
@@ -29,12 +29,12 @@
 /**
  * In what 'mode' the GenerateLandscapeWindowProc is.
  */
-typedef enum glwp_modes {
+enum glwp_modes {
 	GLWP_GENERATE,
 	GLWP_HEIGHTMAP,
 	GLWP_SCENARIO,
 	GLWP_END
-} glwp_modes;
+};
 
 static uint _heightmap_x = 0;
 static uint _heightmap_y = 0;
@@ -740,13 +740,13 @@
 {   WIDGETS_END},
 };
 
-typedef struct tp_info {
+struct tp_info {
 	uint percent;
 	StringID cls;
 	uint current;
 	uint total;
 	int timer;
-} tp_info;
+};
 
 static tp_info _tp;