libgimp: doc fixes and improvements in procedure subclasses

This commit is contained in:
Michael Natterer
2019-10-29 22:15:58 +01:00
parent 1caff42c30
commit 5a37be083a
4 changed files with 7 additions and 7 deletions

View File

@ -189,7 +189,7 @@ gimp_image_procedure_create_config (GimpProcedure *procedure,
* *
* It automatically adds the standard * It automatically adds the standard
* *
* (run-mode, image-id, drawable-id) * (#GimpRunMode, #GimpImage, #GimpDrawable)
* *
* arguments of an image procedure. It is possible to add additional * arguments of an image procedure. It is possible to add additional
* arguments. * arguments.

View File

@ -223,11 +223,11 @@ gimp_load_procedure_create_config (GimpProcedure *procedure,
* *
* It automatically adds the standard * It automatically adds the standard
* *
* (GimpRunMode, GFile) * (#GimpRunMode, #GFile)
* *
* arguments and the standard * arguments and the standard
* *
* (GimpImage) * (#GimpImage)
* *
* return value of a load procedure. It is possible to add additional * return value of a load procedure. It is possible to add additional
* arguments. * arguments.

View File

@ -220,7 +220,7 @@ gimp_save_procedure_create_config (GimpProcedure *procedure,
* *
* It automatically adds the standard * It automatically adds the standard
* *
* (GimpRunMode, GimpImage, GimpImage, GFile) * (#GimpRunMode, #GimpImage, #GimpDrawable, #GFile)
* *
* arguments of a save procedure. It is possible to add additional * arguments of a save procedure. It is possible to add additional
* arguments. * arguments.

View File

@ -211,11 +211,11 @@ gimp_thumbnail_procedure_create_config (GimpProcedure *procedure,
* *
* It automatically adds the standard * It automatically adds the standard
* *
* (uri, size) * (#GFile, size)
* *
* arguments and the standard * arguments and the standard
* *
* (image-id, image-width, image-height, image-type, num-layers) * (#GimpImage, image-width, image-height, #GimpImageType, num-layers)
* *
* return value of a thumbnail procedure. It is possible to add * return value of a thumbnail procedure. It is possible to add
* additional arguments. * additional arguments.
@ -225,7 +225,7 @@ gimp_thumbnail_procedure_create_config (GimpProcedure *procedure,
* "args" #GimpValueArray of #GimpRunThumbnailFunc only contains * "args" #GimpValueArray of #GimpRunThumbnailFunc only contains
* additionally added arguments. * additionally added arguments.
* *
* #GimpThumbnailRunFunc must gimp_value_array_truncate() the returned * #GimpRunThumbnailFunc must gimp_value_array_truncate() the returned
* #GimpValueArray to the number of return values it actually uses. * #GimpValueArray to the number of return values it actually uses.
* *
* Returns: a new #GimpProcedure. * Returns: a new #GimpProcedure.