aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/gsm_map_summary.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 23:16:06 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 23:16:06 +0000
commit26fc3a75776d9884a78ae8677cb6ec156c36b35b (patch)
tree9c6f70f23701a0a94e317e5d70982e3937a630a2 /gtk/gsm_map_summary.c
parentb77a0f210c70d814b70a3c8e6ef2f03d70daa8b9 (diff)
last round to replace SIGNAL_CONNECT with g_signal_connect
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24918 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/gsm_map_summary.c')
-rw-r--r--gtk/gsm_map_summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gsm_map_summary.c b/gtk/gsm_map_summary.c
index 6e12ffe8fa..c81bbcc41e 100644
--- a/gtk/gsm_map_summary.c
+++ b/gtk/gsm_map_summary.c
@@ -286,7 +286,7 @@ gsm_map_stat_gtk_sum_cb(GtkWidget *w _U_, gpointer d _U_)
close_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CLOSE);
window_set_cancel_button(sum_open_w, close_bt, window_cancel_button_cb);
- SIGNAL_CONNECT(sum_open_w, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
+ g_signal_connect(sum_open_w, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
gtk_widget_show(sum_open_w);
window_present(sum_open_w);