From f989a897f1020aae1e27b2eaedf1283d68105ad8 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 28 Jul 2004 15:12:45 +0000 Subject: [PATCH] fix typo in parameter description. 2004-07-28 Michael Natterer * tools/pdbgen/pdb/image.pdb (image_is_dirty): fix typo in parameter description. * app/pdb/image_cmds.c * libgimp/gimpimage_pdb.c: regenerated. --- ChangeLog | 8 ++++++++ app/pdb/image_cmds.c | 2 +- libgimp/gimpimage_pdb.c | 2 +- tools/pdbgen/pdb/image.pdb | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2db4bf3a92..003387f3c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-07-28 Michael Natterer + + * 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 * plug-ins/common/unsharp.c: Added a toggle button to enable/disable diff --git a/app/pdb/image_cmds.c b/app/pdb/image_cmds.c index 0c43049845..d20f46513c 100644 --- a/app/pdb/image_cmds.c +++ b/app/pdb/image_cmds.c @@ -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." } }; diff --git a/libgimp/gimpimage_pdb.c b/libgimp/gimpimage_pdb.c index 3b52eeb39c..c487bad7ca 100644 --- a/libgimp/gimpimage_pdb.c +++ b/libgimp/gimpimage_pdb.c @@ -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) diff --git a/tools/pdbgen/pdb/image.pdb b/tools/pdbgen/pdb/image.pdb index 6590f9b711..73d7299663 100644 --- a/tools/pdbgen/pdb/image.pdb +++ b/tools/pdbgen/pdb/image.pdb @@ -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);' );