misc_gui.c
changeset 2630 35249d2ded3e
parent 2559 08e648022cb0
child 2631 13daba67f217
--- a/misc_gui.c	Sat Nov 12 11:10:12 2005 +0000
+++ b/misc_gui.c	Sun Nov 13 13:43:55 2005 +0000
@@ -29,7 +29,7 @@
 static bool _fios_path_changed;
 static bool _savegame_sort_dirty;
 
-bool _query_string_active;
+static bool _query_string_active;
 
 typedef struct LandInfoData {
 	Town *town;
@@ -41,10 +41,9 @@
 
 static void LandInfoWndProc(Window *w, WindowEvent *e)
 {
-	LandInfoData *lid;
-	StringID str;
-
 	if (e->event == WE_PAINT) {
+		const LandInfoData* lid;
+		StringID str;
 		int i;
 
 		DrawWindowWidgets(w);
@@ -883,7 +882,8 @@
  */
 void UpdateTextBufferSize(Textbuf *tb)
 {
-	char *buf;
+	const char* buf;
+
 	tb->length = 0;
 	tb->width = 0;