diff gui/interface.c @ 36049:31f6a88593b3

Cosmetic: Rename static variables. Use a prefix that differs from prefixes used for global definitions and that has a relation to the source it's used in.
author ib
date Thu, 04 Apr 2013 09:39:03 +0000
parents 40c13df3d953
children 5fb59898a798
line wrap: on
line diff
--- a/gui/interface.c	Wed Apr 03 16:43:24 2013 +0000
+++ b/gui/interface.c	Thu Apr 04 09:39:03 2013 +0000
@@ -68,7 +68,7 @@
     .PlaylistNext = True
 };
 
-static int initialized;
+static int guiInitialized;
 
 /* MPlayer -> GUI */
 
@@ -208,7 +208,7 @@
 
     mplayerLoadFont();
 
-    initialized = True;
+    guiInitialized = True;
 }
 
 /**
@@ -216,7 +216,7 @@
  */
 void guiDone(void)
 {
-    if (initialized) {
+    if (guiInitialized) {
         if (gui_save_pos) {
             gui_main_pos_x  = guiApp.mainWindow.X;
             gui_main_pos_y  = guiApp.mainWindow.Y;