app/tools/gimpairbrushtool.c app/tools/gimpalignoptions.c

2006-08-28  Michael Natterer  <mitch@gimp.org>

	* app/tools/gimpairbrushtool.c
	* app/tools/gimpalignoptions.c
	* app/tools/gimpblendoptions.c
	* app/tools/gimpbucketfilloptions.c
	* app/tools/gimpclonetool.c
	* app/tools/gimpcolorpickeroptions.c
	* app/tools/gimpconvolvetool.c
	* app/tools/gimpcropoptions.c
	* app/tools/gimpdodgeburntool.c
	* app/tools/gimperasertool.c
	* app/tools/gimpflipoptions.c
	* app/tools/gimphistogramoptions.c
	* app/tools/gimpinkoptions-gui.c
	* app/tools/gimpmagnifyoptions.c
	* app/tools/gimpmeasureoptions.c
	* app/tools/gimpmoveoptions.c
	* app/tools/gimppaintoptions-gui.c
	* app/tools/gimprectangleoptions.c
	* app/tools/gimprectangleselectoptions.c
	* app/tools/gimpsmudgetool.c
	* app/tools/gimptextoptions.c
	* app/tools/gimptransformoptions.c
	* app/tools/gimpvectoroptions.c: code cleanup.
This commit is contained in:
Michael Natterer
2006-08-27 22:19:35 +00:00
committed by Michael Natterer
parent 2c47580867
commit 031e8e7905
25 changed files with 71 additions and 106 deletions

View File

@ -68,11 +68,9 @@ gimp_rect_select_options_rectangle_options_iface_init (GimpRectangleOptionsInter
GtkWidget *
gimp_rect_select_options_gui (GimpToolOptions *tool_options)
{
GtkWidget *vbox;
GtkWidget *vbox = gimp_selection_options_gui (tool_options);
GtkWidget *vbox_rectangle;
vbox = gimp_selection_options_gui (tool_options);
/* rectangle options */
vbox_rectangle = gimp_rectangle_options_gui (tool_options);
gtk_box_pack_start (GTK_BOX (vbox), vbox_rectangle, FALSE, FALSE, 0);
@ -80,5 +78,6 @@ gimp_rect_select_options_gui (GimpToolOptions *tool_options)
gimp_rectangle_options_set_highlight (GIMP_RECTANGLE_OPTIONS (tool_options),
FALSE);
return vbox;
}