summaryrefslogtreecommitdiff
path: root/ui/gtk/mtp3_summary.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-21 16:40:14 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-21 16:40:14 +0000
commit03e3fdd79c3c64861fba9cc760c6b3ae1cb97fa3 (patch)
tree65b3461fea0558d21a3fb6acf25da0fd944efef5 /ui/gtk/mtp3_summary.c
parent379bc6934cb74c168f6327473799673aec8d8699 (diff)
downloadwireshark-03e3fdd79c3c64861fba9cc760c6b3ae1cb97fa3.tar.gz
Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().
svn path=/trunk/; revision=42176
Diffstat (limited to 'ui/gtk/mtp3_summary.c')
-rw-r--r--ui/gtk/mtp3_summary.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/gtk/mtp3_summary.c b/ui/gtk/mtp3_summary.c
index 770d3ccbe8..95cf293f3f 100644
--- a/ui/gtk/mtp3_summary.c
+++ b/ui/gtk/mtp3_summary.c
@@ -293,7 +293,7 @@ void mtp3_sum_gtk_sum_cb(GtkAction *action _U_, gpointer user_data _U_)
gtk_window_set_destroy_with_parent (GTK_WINDOW(sum_open_w), TRUE);
/* Container for each row of widgets */
- main_vb = gtk_vbox_new(FALSE, 3);
+ main_vb = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 3, FALSE);
gtk_container_set_border_width(GTK_CONTAINER(main_vb), 5);
gtk_container_add(GTK_CONTAINER(sum_open_w), main_vb);
gtk_widget_show(main_vb);
@@ -303,7 +303,7 @@ void mtp3_sum_gtk_sum_cb(GtkAction *action _U_, gpointer user_data _U_)
gtk_container_add(GTK_CONTAINER(main_vb), file_fr);
gtk_widget_show(file_fr);
- file_box = gtk_vbox_new(FALSE, 3);
+ file_box = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 3, FALSE);
gtk_container_add(GTK_CONTAINER(file_fr), file_box);
gtk_widget_show(file_box);
@@ -331,7 +331,7 @@ void mtp3_sum_gtk_sum_cb(GtkAction *action _U_, gpointer user_data _U_)
gtk_container_add(GTK_CONTAINER(main_vb), data_fr);
gtk_widget_show(data_fr);
- data_box = gtk_vbox_new(FALSE, 3);
+ data_box = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 3, FALSE);
gtk_container_add(GTK_CONTAINER(data_fr), data_box);
gtk_widget_show(data_box);
@@ -373,7 +373,7 @@ void mtp3_sum_gtk_sum_cb(GtkAction *action _U_, gpointer user_data _U_)
gtk_container_add(GTK_CONTAINER(main_vb), tot_fr);
gtk_widget_show(tot_fr);
- tot_box = gtk_vbox_new(FALSE, 3);
+ tot_box = ws_gtk_box_new(GTK_ORIENTATION_VERTICAL, 3, FALSE);
gtk_container_add(GTK_CONTAINER(tot_fr), tot_box);
gtk_widget_show(tot_box);