Mercurial > mplayer.hg
diff gui/dialog/msgbox.c @ 35996:6c891a0e3fea
Cosmetic: Rename the functions creating the dialogs.
author | ib |
---|---|
date | Fri, 29 Mar 2013 13:43:21 +0000 |
parents | 4a5fcdaf31ff |
children | 90ff4280cc80 |
line wrap: on
line diff
--- a/gui/dialog/msgbox.c Fri Mar 29 01:41:06 2013 +0000 +++ b/gui/dialog/msgbox.c Fri Mar 29 13:43:21 2013 +0000 @@ -38,7 +38,7 @@ MessageBox=NULL; } -static GtkWidget * create_MessageBox( void ) +static GtkWidget * CreateMessageBox( void ) { GtkWidget * vbox1; GtkWidget * hbox1; @@ -110,6 +110,6 @@ void ShowMessageBox( const char * msg ) { if ( MessageBox ) { gtk_widget_hide( MessageBox ); gtk_widget_destroy( MessageBox ); } - MessageBox=create_MessageBox(); + MessageBox=CreateMessageBox(); if ( strlen( msg ) < 20 ) gtk_widget_set_usize( MessageBox,196,-1 ); }