Don't return in the middle of the function.

2008-05-22  Martin Nordholts  <martinn@svn.gnome.org>

	* app/tools/gimpfreeselecttool.c
	(gimp_free_select_tool_cursor_update): Don't return in the middle
	of the function.

svn path=/trunk/; revision=25746
This commit is contained in:
Martin Nordholts
2008-05-22 05:44:28 +00:00
committed by Martin Nordholts
parent d35c006b4d
commit 41f102f1ab
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2008-05-22 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimpfreeselecttool.c
(gimp_free_select_tool_cursor_update): Don't return in the middle
of the function.
2008-05-21 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimpforegroundselecttool.c

View File

@ -937,10 +937,14 @@ gimp_free_select_tool_cursor_update (GimpTool *tool,
gimp_tool_control_get_tool_cursor (tool->control),
GIMP_CURSOR_MODIFIER_MOVE);
return;
}
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, coords, state, display);
else
{
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool,
coords,
state,
display);
}
}
static void