aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/bootp_stat.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-09 05:37:53 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2008-04-09 05:37:53 +0000
commitf29f19e32941e82c5afa475cddcee6e30a09a075 (patch)
treefff394c576bc3188110696c4ab538b54f3f3d240 /gtk/bootp_stat.c
parented59d60c91867ff653e5f3140a61aae842a7be5e (diff)
Start getting rid of the uses of compat_macro.h's macros.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24860 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/bootp_stat.c')
-rw-r--r--gtk/bootp_stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/bootp_stat.c b/gtk/bootp_stat.c
index 6ed8edea9a..80eff1ec87 100644
--- a/gtk/bootp_stat.c
+++ b/gtk/bootp_stat.c
@@ -257,11 +257,11 @@ dhcpstat_init(const char *optarg, void *userdata _U_)
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(sp->win, bt_close, window_cancel_button_cb);
- SIGNAL_CONNECT(sp->win, "delete_event", window_delete_event_cb, NULL);
- SIGNAL_CONNECT(sp->win, "destroy", win_destroy_cb, sp);
+ g_signal_connect(sp->win, "delete_event", G_CALLBACK(window_delete_event_cb), NULL);
+ g_signal_connect(sp->win, "destroy", G_CALLBACK(win_destroy_cb), sp);
gtk_widget_show_all(sp->win);