Mercurial > audlegacy-plugins
view src/scrobbler/gtkstuff.c @ 472:69b8baad0b24 trunk
[svn] - stuff from vfs_get_metadata is already strdup'd
author | nenolod |
---|---|
date | Sun, 21 Jan 2007 02:16:17 -0800 |
parents | 03c1ae10bc8d |
children | d124034ebea3 |
line wrap: on
line source
#include "audacious/util.h" #include "audacious/configdb.h" #include <glib.h> #include <glib/gi18n.h> #include <stdio.h> #include <string.h> #include "settings.h" #include "config.h" #include "md5.h" void about_show(void) { static GtkWidget *aboutbox; gchar *tmp; if (aboutbox) return; tmp = g_strdup_printf("Audacious AudioScrobbler Plugin\n\n" "Originally created by Audun Hove <audun@nlc.no> and Pipian <pipian@pipian.com>\n"); aboutbox = xmms_show_message(_("About Scrobbler Plugin"), _(tmp), _("Ok"), FALSE, NULL, NULL); g_free(tmp); gtk_signal_connect(GTK_OBJECT(aboutbox), "destroy", GTK_SIGNAL_FUNC(gtk_widget_destroyed), &aboutbox); } void errorbox_show(char *errortxt) { gchar *tmp; tmp = g_strdup_printf("There has been an error" " that may require your attention.\n\n" "Contents of server error:\n\n" "%s\n", errortxt); xmms_show_message("Scrobbler Error", tmp, "OK", FALSE, NULL, NULL); g_free(tmp); }