aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream_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/rtp_stream_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/rtp_stream_dlg.c')
-rw-r--r--gtk/rtp_stream_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/rtp_stream_dlg.c b/gtk/rtp_stream_dlg.c
index 7d39cda436..19ffa6518c 100644
--- a/gtk/rtp_stream_dlg.c
+++ b/gtk/rtp_stream_dlg.c
@@ -749,7 +749,7 @@ static void rtpstream_dlg_create (void)
hbuttonbox = gtk_hbutton_box_new ();
gtk_box_pack_start (GTK_BOX (main_vb), hbuttonbox, FALSE, FALSE, 0);
gtk_button_box_set_layout (GTK_BUTTON_BOX (hbuttonbox), GTK_BUTTONBOX_END);
- gtk_button_box_set_spacing (GTK_BUTTON_BOX (hbuttonbox), 0);
+ gtk_box_set_spacing (GTK_BOX (hbuttonbox), 0);
bt_unselect = gtk_button_new_with_label ("Unselect");
gtk_container_add (GTK_CONTAINER (hbuttonbox), bt_unselect);