summaryrefslogtreecommitdiff
path: root/ui/gtk/sctp_chunk_stat_dlg.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/sctp_chunk_stat_dlg.c
parentc48331700661d96b7f824539ddd07d1d550b4465 (diff)
downloadwireshark-8bab40a99e310ee466ca288f6b0632c07abf6250.tar.gz
More GTK3 adaptations
svn path=/trunk/; revision=42187
Diffstat (limited to 'ui/gtk/sctp_chunk_stat_dlg.c')
-rw-r--r--ui/gtk/sctp_chunk_stat_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/sctp_chunk_stat_dlg.c b/ui/gtk/sctp_chunk_stat_dlg.c
index baa27a60b5..4c2b4d3786 100644
--- a/ui/gtk/sctp_chunk_stat_dlg.c
+++ b/ui/gtk/sctp_chunk_stat_dlg.c
@@ -625,7 +625,7 @@ gtk_sctpstat_dlg(struct sctp_udata *u_data, unsigned int direction)
gtk_widget_show(u_data->io->window);
- hbuttonbox2 = gtk_hbutton_box_new();
+ hbuttonbox2 = gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);
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);
@@ -747,7 +747,7 @@ sctp_chunk_dlg(struct sctp_udata *u_data)
gtk_misc_set_alignment(GTK_MISC(label), 0.0f, 0.5f);
gtk_table_attach_defaults(GTK_TABLE(table), label, 3, 4, row, row+1);
- h_button_box=gtk_hbutton_box_new();
+ h_button_box=gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL);
gtk_box_pack_start(GTK_BOX(main_vb), h_button_box, FALSE, FALSE, 0);
gtk_container_set_border_width(GTK_CONTAINER(h_button_box), 10);
gtk_button_box_set_layout(GTK_BUTTON_BOX (h_button_box), GTK_BUTTONBOX_SPREAD);