# HG changeset patch # User Matti Hamalainen # Date 1193119095 -10800 # Node ID 447da61804f13e362dd55eeeb426d17a074f399a # Parent 5fea114ca11e5d0f8b64dc440acfe2545bc2d99c Cosmetics. diff -r 5fea114ca11e -r 447da61804f1 src/modplug/gui/main.cxx --- a/src/modplug/gui/main.cxx Tue Oct 23 08:45:14 2007 +0300 +++ b/src/modplug/gui/main.cxx Tue Oct 23 08:58:15 2007 +0300 @@ -41,12 +41,15 @@ { if(!AboutWin) { - gchar * about_text = g_strjoin( "" , _("Modplug Input Plugin for Audacious ver") , - VERSION , _("\nModplug sound engine written by Olivier Lapicque.\nXMMS interface for Modplug by Kenton Varda.\n(c)2000 Olivier Lapicque and Kenton Varda.\nUpdates and Maintainance by Konstanty Bialkowski.\nPorted to BMP by Theofilos Intzoglou.") , NULL ); - AboutWin = audacious_info_dialog( _("About Modplug") , about_text , _("Ok") , FALSE , NULL , NULL ); - gtk_signal_connect( GTK_OBJECT(AboutWin) , "destroy" , + gchar * about_text = g_strjoin("", + _("Modplug Input Plugin for Audacious ver"), VERSION, + _("\nModplug sound engine written by Olivier Lapicque.\nXMMS interface for Modplug by Kenton Varda.\n(c)2000 Olivier Lapicque and Kenton Varda.\nUpdates and Maintainance by Konstanty Bialkowski.\nPorted to BMP by Theofilos Intzoglou."), + NULL); + + AboutWin = audacious_info_dialog(_("About Modplug"), about_text, _("Ok"), FALSE, NULL, NULL); + gtk_signal_connect(GTK_OBJECT(AboutWin), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &AboutWin); - g_free( about_text ); + g_free(about_text); } gtk_widget_show(AboutWin); }