summaryrefslogtreecommitdiffstats
path: root/gui/mplayer/widgets.c
diff options
context:
space:
mode:
Diffstat (limited to 'gui/mplayer/widgets.c')
-rw-r--r--gui/mplayer/widgets.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/mplayer/widgets.c b/gui/mplayer/widgets.c
index 1d4ee6123c..891b44b32f 100644
--- a/gui/mplayer/widgets.c
+++ b/gui/mplayer/widgets.c
@@ -35,7 +35,7 @@ GtkWidget * ErrorPixmap;
int gtkPopupMenu = 0;
int gtkPopupMenuParam = 0;
-int gtkInited = 0;
+int gtkInitialized = 0;
#include "gtk/sb.h"
#include "gtk/pl.h"
@@ -78,7 +78,7 @@ void gtkInit( void )
gtk_widget_destroy( win );
}
- gtkInited=1;
+ gtkInitialized=1;
}
void gtkAddIcon( GtkWidget * window )
@@ -115,7 +115,7 @@ void gtkEventHandling( void )
void gtkMessageBox( int type,const gchar * str )
{
- if ( !gtkInited ) return;
+ if ( !gtkInitialized ) return;
ShowMessageBox( str );
gtk_label_set_text( GTK_LABEL( gtkMessageBoxText ),str );
/* enable linewrapping by alex */