summaryrefslogtreecommitdiff
path: root/gtk/sctp_byte_graph_dlg.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-07-08 02:43:40 +0000
committerBill Meier <wmeier@newsguy.com>2008-07-08 02:43:40 +0000
commitd3fc3b6c3ead052ebece5e3b4e7e992a7b288a30 (patch)
tree7341bef4288f6fea689506362f242c3a5692eb9d /gtk/sctp_byte_graph_dlg.c
parent44efa0ed2ef94755b092880b17934b8444c5b1ca (diff)
downloadwireshark-d3fc3b6c3ead052ebece5e3b4e7e992a7b288a30.tar.gz
Fix some simple cases of GTK2 deprecated API usage by using a renamed or equivalent API
gtk_button_box_set_spacing() ==> gtk_box_set_spacing() svn path=/trunk/; revision=25673
Diffstat (limited to 'gtk/sctp_byte_graph_dlg.c')
-rw-r--r--gtk/sctp_byte_graph_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sctp_byte_graph_dlg.c b/gtk/sctp_byte_graph_dlg.c
index 426f4d7fcf..e47d6caa53 100644
--- a/gtk/sctp_byte_graph_dlg.c
+++ b/gtk/sctp_byte_graph_dlg.c
@@ -1059,7 +1059,7 @@ static void init_sctp_graph_window(struct sctp_udata *u_data)
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
gtk_button_box_set_layout(GTK_BUTTON_BOX (hbox), GTK_BUTTONBOX_SPREAD);
- gtk_button_box_set_spacing(GTK_BUTTON_BOX (hbox), 0);
+ gtk_box_set_spacing(GTK_BOX (hbox), 0);
gtk_box_set_child_packing(GTK_BOX(vbox), hbox, FALSE, FALSE, 0, GTK_PACK_START);
gtk_widget_show(hbox);