fix typo in parameter description.

2004-07-28  Michael Natterer  <mitch@gimp.org>

	* tools/pdbgen/pdb/image.pdb (image_is_dirty): fix typo in
	parameter description.

	* app/pdb/image_cmds.c
	* libgimp/gimpimage_pdb.c: regenerated.
This commit is contained in:
Michael Natterer 2004-07-28 15:12:45 +00:00 committed by Michael Natterer
parent d0b0388c38
commit f989a897f1
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2004-07-28 Michael Natterer <mitch@gimp.org>
* tools/pdbgen/pdb/image.pdb (image_is_dirty): fix typo in
parameter description.
* app/pdb/image_cmds.c
* libgimp/gimpimage_pdb.c: regenerated.
2004-07-28 DindinX <david.odin@cpe.fr>
* plug-ins/common/unsharp.c: Added a toggle button to enable/disable

View file

@ -2699,7 +2699,7 @@ static ProcArg image_is_dirty_outargs[] =
{
GIMP_PDB_INT32,
"dirty",
"True if the image has unsaved changed."
"True if the image has unsaved changes."
}
};

View file

@ -1395,7 +1395,7 @@ gimp_image_clean_all (gint32 image_ID)
* This procedure checks the specified image's dirty count to see if it
* needs to be saved.
*
* Returns: True if the image has unsaved changed.
* Returns: True if the image has unsaved changes.
*/
gboolean
gimp_image_is_dirty (gint32 image_ID)

View file

@ -1007,7 +1007,7 @@ HELP
@outargs = (
{ name => 'dirty', type => 'boolean', init => 1,
desc => 'True if the image has unsaved changed.' }
desc => 'True if the image has unsaved changes.' }
);
%invoke = ( code => 'dirty = (gimage->dirty != 0);' );