added a missing break that broke gimp_image_find_next_guide(). Fixes bug

2003-05-11  Sven Neumann  <sven@gimp.org>

	* tools/pdbgen/pdb/guides.pdb: added a missing break that broke
	gimp_image_find_next_guide(). Fixes bug #112717.

	* app/pdb/guides_cmds.c: regenerated.
This commit is contained in:
Sven Neumann 2003-05-11 13:47:16 +00:00 committed by Sven Neumann
parent ebb56bc5f8
commit 0c30ec3cf7
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2003-05-11 Sven Neumann <sven@gimp.org>
* tools/pdbgen/pdb/guides.pdb: added a missing break that broke
gimp_image_find_next_guide(). Fixes bug #112717.
* app/pdb/guides_cmds.c: regenerated.
2003-05-09 Sven Neumann <sven@gimp.org>
* app/widgets/gimpselectioneditor.[ch]: added a "Stroke Selection"

View File

@ -319,6 +319,7 @@ image_find_next_guide_invoker (Gimp *gimp,
else
{
next_guide = g->guide_ID;
break;
}
}

View File

@ -167,6 +167,7 @@ HELP
else
{
next_guide = g->guide_ID;
break;
}
}