fixed incorrect description of gimp-selection-is-empty, reported by pk.

2007-08-24  Raphael Quinet  <raphael@gimp.org>

	* tools/pdbgen/pdb/selection.pdb: fixed incorrect description of
	gimp-selection-is-empty, reported by pk.  This function returns
	TRUE when the selection is empty, but the description stated the
	opposite.

	* app/pdb/selection_cmds.c
	* libgimp/gimpselection_pdb.c: regenerated.

svn path=/trunk/; revision=23368
This commit is contained in:
Raphael Quinet 2007-08-24 17:50:04 +00:00 committed by Raphaël Quinet
parent c3d79369e2
commit 2e7b1bd12d
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,13 @@
2007-08-24 Raphaël Quinet <raphael@gimp.org>
* tools/pdbgen/pdb/selection.pdb: fixed incorrect description of
gimp-selection-is-empty, reported by pk. This function returns
TRUE when the selection is empty, but the description stated the
opposite.
* app/pdb/selection_cmds.c
* libgimp/gimpselection_pdb.c: regenerated.
2007-08-24 Michael Natterer <mitch@gimp.org>
* app/display/gimpdisplayshell-draw.c

View File

@ -598,7 +598,7 @@ register_selection_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-selection-is-empty",
"Determine whether the selection is empty.",
"This procedure returns TRUE if the selection for the specified image is not empty.",
"This procedure returns TRUE if the selection for the specified image is empty.",
"Spencer Kimball & Peter Mattis",
"Spencer Kimball & Peter Mattis",
"1995-1996",

View File

@ -130,7 +130,7 @@ gimp_selection_value (gint32 image_ID,
* Determine whether the selection is empty.
*
* This procedure returns TRUE if the selection for the specified image
* is not empty.
* is empty.
*
* Returns: Is the selection empty?
*/

View File

@ -97,8 +97,7 @@ sub selection_is_empty {
$blurb = 'Determine whether the selection is empty.';
$help = <<'HELP';
This procedure returns TRUE if the selection for the specified image is not
empty.
This procedure returns TRUE if the selection for the specified image is empty.
HELP
&std_pdb_misc;