diff --git a/app/pdb/image-cmds.c b/app/pdb/image-cmds.c index 14be5b5be5..58a5ecb4be 100644 --- a/app/pdb/image-cmds.c +++ b/app/pdb/image-cmds.c @@ -5558,7 +5558,7 @@ register_image_procs (GimpPDB *pdb) "gimp-image-get-parasite-list"); gimp_procedure_set_static_help (procedure, "List all parasites.", - "Returns a list of all currently attached parasites.", + "Returns a list of the names of all currently attached parasites. These names can later be used to get the actual #GimpParasite with 'gimp-image-get-parasite' when needed.", NULL); gimp_procedure_set_static_attribution (procedure, "Marc Lehmann", diff --git a/libgimp/gimpimage_pdb.c b/libgimp/gimpimage_pdb.c index 95f74be1a7..0e57f168e4 100644 --- a/libgimp/gimpimage_pdb.c +++ b/libgimp/gimpimage_pdb.c @@ -3385,7 +3385,9 @@ gimp_image_get_parasite (GimpImage *image, * * List all parasites. * - * Returns a list of all currently attached parasites. + * Returns a list of the names of all currently attached parasites. + * These names can later be used to get the actual #GimpParasite with + * gimp_image_get_parasite() when needed. * * Returns: (array length=num_parasites) (element-type gchar*) (transfer full): * The names of currently attached parasites. diff --git a/pdb/groups/image.pdb b/pdb/groups/image.pdb index 9ed9679a58..2e775239d8 100644 --- a/pdb/groups/image.pdb +++ b/pdb/groups/image.pdb @@ -2878,7 +2878,11 @@ CODE sub image_get_parasite_list { $blurb = 'List all parasites.'; - $help = 'Returns a list of all currently attached parasites.'; + $help = <<'HELP'; +Returns a list of the names of all currently attached parasites. +These names can later be used to get the actual #GimpParasite with +gimp_image_get_parasite() when needed. +HELP &marc_pdb_misc('1999', '2.8');