clarify if() condition.

2008-08-04  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpimagemapconfig.c (gimp_image_map_config_compare):
	clarify if() condition.


svn path=/trunk/; revision=26366
This commit is contained in:
Michael Natterer
2008-08-04 19:59:31 +00:00
committed by Michael Natterer
parent 99be15829c
commit 21754282ef
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-04 Michael Natterer <mitch@gimp.org>
* app/core/gimpimagemapconfig.c (gimp_image_map_config_compare):
clarify if() condition.
2008-08-04 Martin Nordholts <martinn@svn.gnome.org>
* app/core/gimpimage.c (gimp_image_emit_size_changed_signals): The

View File

@ -148,7 +148,7 @@ gimp_image_map_config_compare (GimpImageMapConfig *a,
{
return -1;
}
else if (b->time)
else if (b->time > 0)
{
return 1;
}