From 5ea928b3df2c1af0d40b5448cf4734d4fbb81ac7 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Fri, 4 May 2012 17:23:17 +0200 Subject: [PATCH] app: use our gtk_box_new() wrapper instead of gtk_vbox_new() --- app/tools/gimpoperationtool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools/gimpoperationtool.c b/app/tools/gimpoperationtool.c index c1011125cd..394ce2c62b 100644 --- a/app/tools/gimpoperationtool.c +++ b/app/tools/gimpoperationtool.c @@ -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);