# HG changeset patch # User William Pitcock # Date 1192320524 18000 # Node ID ebf763c51061b51d09d723ddbf30f10e74d04490 # Parent 57935d8ebefa7a3d043c8bec053b7aed33743d64 Use GCallback instead of GtkSignalFunc. diff -r 57935d8ebefa -r ebf763c51061 src/audacious/util.c --- a/src/audacious/util.c Thu Oct 11 20:09:43 2007 -0500 +++ b/src/audacious/util.c Sat Oct 13 19:08:44 2007 -0500 @@ -896,7 +896,7 @@ GtkWidget * audacious_info_dialog(const gchar * title, const gchar * text, const gchar * button_text, gboolean modal, - GtkSignalFunc button_action, gpointer action_data) + GCallback button_action, gpointer action_data) { GtkWidget *dialog; GtkWidget *dialog_vbox, *dialog_hbox, *dialog_bbox; diff -r 57935d8ebefa -r ebf763c51061 src/audacious/util.h --- a/src/audacious/util.h Thu Oct 11 20:09:43 2007 -0500 +++ b/src/audacious/util.h Sat Oct 13 19:08:44 2007 -0500 @@ -93,7 +93,7 @@ GtkWidget *audacious_info_dialog(const gchar * title, const gchar * text, const gchar * button_text, gboolean modal, - GtkSignalFunc button_action, + GCallback button_action, gpointer action_data); GdkPixmap *create_dblsize_pixmap(GdkPixmap *pix);