aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rtp_player.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-21 21:13:13 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-21 21:13:13 +0000
commit8bab40a99e310ee466ca288f6b0632c07abf6250 (patch)
treee0f2e628e37cff7a58986ceed5fa0cb3372e4af5 /ui/gtk/rtp_player.c
parentc48331700661d96b7f824539ddd07d1d550b4465 (diff)
More GTK3 adaptations
svn path=/trunk/; revision=42187
Diffstat (limited to 'ui/gtk/rtp_player.c')
-rw-r--r--ui/gtk/rtp_player.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gtk/rtp_player.c b/ui/gtk/rtp_player.c
index f684b242b7..f70c40bf30 100644
--- a/ui/gtk/rtp_player.c
+++ b/ui/gtk/rtp_player.c
@@ -1829,7 +1829,7 @@ add_channel_to_window(gchar *key _U_ , rtp_channel_info_t *rci, guint *counter _
/* Create the Separator if it is not the last one */
(*counter)++;
if (*counter < g_hash_table_size(rtp_channels_hash)) {
- rci->separator = gtk_hseparator_new();
+ rci->separator = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start(GTK_BOX (channels_vb), rci->separator, FALSE, FALSE, 5);
}
@@ -2379,7 +2379,7 @@ rtp_player_dlg_create(void)
gtk_widget_set_tooltip_text (cb_use_rtp_timestamp, "Use RTP Timestamp instead of the arriving packet time. This will not reproduce the RTP stream as the user heard it, but is useful when the RTP is being tunneled and the original packet timing is missing");
/* button row */
- hbuttonbox = gtk_hbutton_box_new ();
+ hbuttonbox = gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start (GTK_BOX (h_jitter_buttons_box), hbuttonbox, TRUE, TRUE, 0);
gtk_button_box_set_layout (GTK_BUTTON_BOX (hbuttonbox), GTK_BUTTONBOX_SPREAD);
gtk_box_set_spacing (GTK_BOX (hbuttonbox), 10);
@@ -2418,7 +2418,7 @@ rtp_player_dlg_create(void)
g_signal_connect(rtp_player_dlg_w, "destroy", G_CALLBACK(rtp_player_on_destroy), NULL);
/* button row */
- /* ?? hbuttonbox = gtk_hbutton_box_new ();*/
+ /* ?? hbuttonbox = gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);*/
/* Filter/status hbox */
stat_hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 1, FALSE);