aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/pixmap_save.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-11 23:16:06 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-11 23:16:06 +0000
commit8e58ec7085b8868163932996e50ecc7a5d38388e (patch)
tree9c6f70f23701a0a94e317e5d70982e3937a630a2 /gtk/pixmap_save.c
parent22fe177634019653d3b5a38b7710b885e637163a (diff)
last round to replace SIGNAL_CONNECT with g_signal_connect
svn path=/trunk/; revision=24918
Diffstat (limited to 'gtk/pixmap_save.c')
-rw-r--r--gtk/pixmap_save.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/pixmap_save.c b/gtk/pixmap_save.c
index 5cf6b867fe..08a0ff532d 100644
--- a/gtk/pixmap_save.c
+++ b/gtk/pixmap_save.c
@@ -155,7 +155,7 @@ pixmap_save_cb(GtkWidget *w, gpointer pixmap_ptr _U_)
g_object_set_data(G_OBJECT(save_as_w), "type_cm", type_cm);
gtk_widget_show(type_cm);
- SIGNAL_CONNECT(save_as_w, "destroy", pixbuf_save_destroy_cb, NULL);
+ g_signal_connect(save_as_w, "destroy", G_CALLBACK(pixbuf_save_destroy_cb), NULL);
gtk_widget_show(save_as_w);
window_present(save_as_w);