pass GIMP_DIRTY_ALL to the "clean" signal instead of uninitialized memory.

2007-11-08  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpimage.c (gimp_image_clean_all): pass GIMP_DIRTY_ALL
	to the "clean" signal instead of uninitialized memory.


svn path=/trunk/; revision=24087
This commit is contained in:
Michael Natterer
2007-11-08 14:31:19 +00:00
committed by Michael Natterer
parent f42a434d4e
commit 9de9549980
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-11-08 Michael Natterer <mitch@gimp.org>
* app/core/gimpimage.c (gimp_image_clean_all): pass GIMP_DIRTY_ALL
to the "clean" signal instead of uninitialized memory.
2007-11-06 Martin Nordholts <martinn@svn.gnome.org>
* app/tools/gimprectangletool.c

View File

@ -1970,7 +1970,7 @@ gimp_image_clean_all (GimpImage *image)
image->dirty = 0;
image->dirty_time = 0;
g_signal_emit (image, gimp_image_signals[CLEAN], 0);
g_signal_emit (image, gimp_image_signals[CLEAN], 0, GIMP_DIRTY_ALL);
}
/**