app: use our gtk_box_new() wrapper instead of gtk_vbox_new()

This commit is contained in:
Michael Natterer 2012-05-04 17:23:17 +02:00
parent 486e76bdab
commit 5ea928b3df
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ gimp_operation_tool_dialog (GimpImageMapTool *image_map_tool)
main_vbox = gimp_image_map_tool_dialog_get_vbox (image_map_tool);
/* The options vbox */
tool->options_box = gtk_vbox_new (FALSE, 0);
tool->options_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_box_pack_start (GTK_BOX (main_vbox), tool->options_box,
FALSE, FALSE, 0);
gtk_widget_show (tool->options_box);