Bill Skaggs <weskaggs@primate.ucdavis.edu>

* app/tools/gimprectangletool.c: initialize vars to quiet
	stupid compile warnings.

svn path=/trunk/; revision=24236
This commit is contained in:
William Skaggs 2007-11-27 19:28:38 +00:00
parent 0c118652fe
commit 7c27d0d2eb
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-11-27 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* app/tools/gimprectangletool.c: initialize vars to quiet
stupid compile warnings.
2007-11-26 Sven Neumann <sven@gimp.org>
* app/widgets/gimpwidgets-utils.c (gimp_widget_accel_changed):

View File

@ -2425,8 +2425,12 @@ gimp_rectangle_tool_coord_on_handle (GimpRectangleTool *rect_tool,
GimpTool *tool;
gdouble pub_x1, pub_y1, pub_x2, pub_y2;
gdouble rect_w, rect_h;
gdouble handle_x, handle_y, handle_width, handle_height;
gint narrow_mode_x_dir, narrow_mode_y_dir;
gdouble handle_x = 0;
gdouble handle_y = 0;
gdouble handle_width = 0;
gdouble handle_height = 0;
gint narrow_mode_x_dir = 0;
gint narrow_mode_y_dir = 0;
tool = GIMP_TOOL (rect_tool);
draw_tool = GIMP_DRAW_TOOL (tool);