pdb: document that the context's inteprolation defaults to the gimprc value

This commit is contained in:
Michael Natterer 2010-10-05 21:11:10 +02:00
parent 49f2204a8a
commit 2e9b6625e8
3 changed files with 7 additions and 3 deletions

View File

@ -1687,7 +1687,7 @@ register_context_procs (GimpPDB *pdb)
gimp_procedure_set_static_strings (procedure,
"gimp-context-get-interpolation",
"Get the interpolation type.",
"This procedure returns the interpolation setting. The return value is an integer which corresponds to the values listed in the argument description.",
"This procedure returns the interpolation setting. The return value is an integer which corresponds to the values listed in the argument description. If the interpolation has not been set explicitly by 'gimp-context-set-interpolation', the default interpolation set in gimprc will be used.",
"Michael Natterer <mitch@gimp.org>",
"Michael Natterer",
"2010",

View File

@ -1073,7 +1073,9 @@ gimp_context_set_feather_radius (gdouble feather_radius_x,
*
* This procedure returns the interpolation setting. The return value
* is an integer which corresponds to the values listed in the argument
* description.
* description. If the interpolation has not been set explicitly by
* gimp_context_set_interpolation(), the default interpolation set in
* gimprc will be used.
*
* Returns: The interpolation type.
*

View File

@ -870,7 +870,9 @@ sub context_get_interpolation {
$help = <<'HELP';
This procedure returns the interpolation setting. The return value
is an integer which corresponds to the values listed in the argument
description.
description. If the interpolation has not been set explicitly by
gimp_context_set_interpolation(), the default interpolation set in
gimprc will be used.
HELP
&mitch_pdb_misc('2010', '2.8');