summaryrefslogtreecommitdiff
path: root/gtk/ansi_map_stat.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-04-09 05:37:53 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-04-09 05:37:53 +0000
commit41654fe5e4603f17ed9dd8266cf83fe12361b87b (patch)
treefff394c576bc3188110696c4ab538b54f3f3d240 /gtk/ansi_map_stat.c
parent63c5c71cf89c767bcf0922b368724c18248ebc02 (diff)
downloadwireshark-41654fe5e4603f17ed9dd8266cf83fe12361b87b.tar.gz
Start getting rid of the uses of compat_macro.h's macros.
svn path=/trunk/; revision=24860
Diffstat (limited to 'gtk/ansi_map_stat.c')
-rw-r--r--gtk/ansi_map_stat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/ansi_map_stat.c b/gtk/ansi_map_stat.c
index b045e9c8c1..5ee14936a3 100644
--- a/gtk/ansi_map_stat.c
+++ b/gtk/ansi_map_stat.c
@@ -351,18 +351,18 @@ ansi_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", ansi_map_stat_gtk_click_column_cb, col_arrows);
+ g_signal_connect(dlg_p->table, "click-column", G_CALLBACK(ansi_map_stat_gtk_click_column_cb), col_arrows);
/* Button row. */
bbox = dlg_button_row_new(GTK_STOCK_CLOSE, NULL);
gtk_box_pack_start(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
- bt_close = OBJECT_GET_DATA(bbox, GTK_STOCK_CLOSE);
+ 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", ansi_map_stat_gtk_win_destroy_cb, dlg_p);
+ g_signal_connect(dlg_p->win, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
+ g_signal_connect(dlg_p->win, "destroy", G_CALLBACK(ansi_map_stat_gtk_win_destroy_cb), dlg_p);
gtk_widget_show_all(dlg_p->win);
window_present(dlg_p->win);