aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/file_dlg.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-04-09 05:51:56 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-04-09 05:51:56 +0000
commitcaa4281da4f06f148a598eb0faec6e944d03abb1 (patch)
tree84250c5423353f3beee0150c052db7e642765f23 /gtk/file_dlg.c
parent7d3b2bfbbd02ccff3d5f77910c2b7cc67128218a (diff)
gtk_widget_ref() -> g_object_ref()
GTK_SIGNAL_FUNC -> G_CALLBACK() svn path=/trunk/; revision=28017
Diffstat (limited to 'gtk/file_dlg.c')
-rw-r--r--gtk/file_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/file_dlg.c b/gtk/file_dlg.c
index 1e92acb3d4..6a283cda2f 100644
--- a/gtk/file_dlg.c
+++ b/gtk/file_dlg.c
@@ -189,7 +189,7 @@ file_selection_browse(GtkWidget *file_bt, GtkWidget *file_te, const char *label,
/* Call a handler when the file selection box is destroyed, so we can inform
our caller, if any, that it's been destroyed. */
- g_signal_connect(fs, "destroy", GTK_SIGNAL_FUNC(file_selection_browse_destroy_cb),
+ g_signal_connect(fs, "destroy", G_CALLBACK(file_selection_browse_destroy_cb),
file_te);
if (gtk_dialog_run(GTK_DIALOG(fs)) == GTK_RESPONSE_ACCEPT)