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:

committed by
Michael Natterer

parent
99be15829c
commit
21754282ef
@ -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
|
||||
|
@ -148,7 +148,7 @@ gimp_image_map_config_compare (GimpImageMapConfig *a,
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
else if (b->time)
|
||||
else if (b->time > 0)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user