aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/goto_dlg.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/goto_dlg.c
parent379bc6934cb74c168f6327473799673aec8d8699 (diff)
Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().
svn path=/trunk/; revision=42176
Diffstat (limited to 'ui/gtk/goto_dlg.c')
-rw-r--r--ui/gtk/goto_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/goto_dlg.c b/ui/gtk/goto_dlg.c
index 567f535f7c..eed72f22a9 100644
--- a/ui/gtk/goto_dlg.c
+++ b/ui/gtk/goto_dlg.c
@@ -56,13 +56,13 @@ goto_frame_cb(GtkWidget *w _U_, gpointer d _U_)
goto_frame_w = dlg_window_new("Wireshark: Go To Packet");
/* 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(goto_frame_w), main_vb);
gtk_widget_show(main_vb);
/* Frame number row */
- fnumber_hb = gtk_hbox_new(FALSE, 3);
+ fnumber_hb = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
gtk_container_add(GTK_CONTAINER(main_vb), fnumber_hb);
gtk_widget_show(fnumber_hb);