aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/gsm_map_stat.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 22:10:36 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-11 22:10:36 +0000
commit23e2d6b9c82e07b0386619fd979f53cb67f0c2d0 (patch)
treeca1d9084ba2eda116080ce5624e1cbbc295934a2 /gtk/gsm_map_stat.c
parenta9827d65f9611a4708f09a056da2e46baae70a7c (diff)
third round to replace SIGNAL_CONNECT with g_signal_connect
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24914 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/gsm_map_stat.c')
-rw-r--r--gtk/gsm_map_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gsm_map_stat.c b/gtk/gsm_map_stat.c
index 64ac9e5045..c7adf91ec2 100644
--- a/gtk/gsm_map_stat.c
+++ b/gtk/gsm_map_stat.c
@@ -383,7 +383,7 @@ gsm_map_stat_gtk_win_create(
gtk_clist_column_titles_show(GTK_CLIST(dlg_p->table));
gtk_container_add(GTK_CONTAINER(dlg_p->scrolled_win), dlg_p->table);
- SIGNAL_CONNECT(dlg_p->table, "click-column", gsm_map_stat_gtk_click_column_cb, col_arrows);
+ SIGNAL_CONNECT(dlg_p->table, "click-column", G_CALLBACK(gsm_map_stat_gtk_click_column_cb), col_arrows);
/* Button row. */
bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
@@ -392,8 +392,8 @@ gsm_map_stat_gtk_win_create(
bt_close = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_CLOSE);
window_set_cancel_button(dlg_p->win, bt_close, window_cancel_button_cb);
- SIGNAL_CONNECT(dlg_p->win, "delete_event", window_delete_event_cb, NULL);
- SIGNAL_CONNECT(dlg_p->win, "destroy", gsm_map_stat_gtk_win_destroy_cb, dlg_p);
+ SIGNAL_CONNECT(dlg_p->win, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
+ SIGNAL_CONNECT(dlg_p->win, "destroy", G_CALLBACK(gsm_map_stat_gtk_win_destroy_cb), dlg_p);
gtk_widget_show_all(dlg_p->win);
window_present(dlg_p->win);