summaryrefslogtreecommitdiff
path: root/ui/gtk/dlg_utils.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-20 14:56:24 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-20 14:56:24 +0000
commitb832d1d6ba058aaf3c964ce8eb8137a727b7342f (patch)
tree63d87431da0427096d7a29adda28c102c3a644e5 /ui/gtk/dlg_utils.c
parent3140c10fbbba062bfbee1bb7e339a1b76a060862 (diff)
downloadwireshark-b832d1d6ba058aaf3c964ce8eb8137a727b7342f.tar.gz
Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().
svn path=/trunk/; revision=42161
Diffstat (limited to 'ui/gtk/dlg_utils.c')
-rw-r--r--ui/gtk/dlg_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/dlg_utils.c b/ui/gtk/dlg_utils.c
index 80ac2c29c5..8ec3cb3a64 100644
--- a/ui/gtk/dlg_utils.c
+++ b/ui/gtk/dlg_utils.c
@@ -222,7 +222,7 @@ dlg_button_row_new(const gchar *stock_id_first, ...)
}
va_end(stock_id_list);
- hbox = gtk_hbox_new(FALSE, 0);
+ hbox = ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0, FALSE);
gtk_widget_show(hbox);
button_hbox = gtk_hbutton_box_new();