aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_stat_dlg.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-08 02:43:40 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-08 02:43:40 +0000
commitdbf15ed391f4f7e8263823d1543f8af33087ad91 (patch)
tree7341bef4288f6fea689506362f242c3a5692eb9d /gtk/sctp_stat_dlg.c
parent7fbef21b335d847206ede5aac7f189c8ad12b377 (diff)
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() git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25673 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/sctp_stat_dlg.c')
-rw-r--r--gtk/sctp_stat_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/sctp_stat_dlg.c b/gtk/sctp_stat_dlg.c
index 4cb3a83880..5e7113e07e 100644
--- a/gtk/sctp_stat_dlg.c
+++ b/gtk/sctp_stat_dlg.c
@@ -565,7 +565,7 @@ gtk_sctpstat_dlg(void)
gtk_box_pack_start(GTK_BOX(vbox1), hbuttonbox2, FALSE, FALSE, 0);
gtk_container_set_border_width(GTK_CONTAINER(hbuttonbox2), 10);
gtk_button_box_set_layout(GTK_BUTTON_BOX (hbuttonbox2), GTK_BUTTONBOX_SPREAD);
- gtk_button_box_set_spacing(GTK_BUTTON_BOX (hbuttonbox2), 0);
+ gtk_box_set_spacing(GTK_BOX (hbuttonbox2), 0);
gtk_button_box_set_child_ipadding(GTK_BUTTON_BOX (hbuttonbox2), 4, 0);
gtk_widget_show(hbuttonbox2);