Mercurial > audlegacy-plugins
changeset 2120:447da61804f1
Cosmetics.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Tue, 23 Oct 2007 08:58:15 +0300 |
parents | 5fea114ca11e |
children | 8f1c26966b61 |
files | src/modplug/gui/main.cxx |
diffstat | 1 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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); }