[gimp/metadata-browser] app: use our gtk_box_new() wrapper instead of gtk_vbox_new()



commit ea896e17a22a97654c94383914b4cd1dcc0f7638
Author: Michael Natterer <mitch gimp org>
Date:   Fri May 4 17:23:17 2012 +0200

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

 app/tools/gimpoperationtool.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/tools/gimpoperationtool.c b/app/tools/gimpoperationtool.c
index c101112..394ce2c 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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]