libgimp: fix docs of deprecated functions

This commit is contained in:
Michael Natterer 2012-05-03 00:25:08 +02:00
parent f32706a0d1
commit 569c122137
2 changed files with 3 additions and 3 deletions

View file

@ -622,7 +622,7 @@ gimp_drawable_parasite_list (gint32 drawable_ID,
* Convenience function that creates a parasite and attaches it * Convenience function that creates a parasite and attaches it
* to GIMP. * to GIMP.
* *
* Deprecated: use gimp_image_parasite_attach() instead. * Deprecated: use gimp_item_attach_parasite() instead.
* *
* Return value: TRUE on successful creation and attachment of * Return value: TRUE on successful creation and attachment of
* the new parasite. * the new parasite.

View file

@ -437,7 +437,7 @@ gimp_image_parasite_list (gint32 image_ID,
* Convenience function that creates a parasite and attaches it * Convenience function that creates a parasite and attaches it
* to GIMP. * to GIMP.
* *
* Deprecated: Use gimp_image_parasite_attach() instead. * Deprecated: Use gimp_image_attach_parasite() instead.
* *
* Return value: TRUE on successful creation and attachment of * Return value: TRUE on successful creation and attachment of
* the new parasite. * the new parasite.
@ -454,7 +454,7 @@ gimp_image_attach_new_parasite (gint32 image_ID,
GimpParasite *parasite = gimp_parasite_new (name, flags, size, data); GimpParasite *parasite = gimp_parasite_new (name, flags, size, data);
gboolean success; gboolean success;
success = gimp_image_parasite_attach (image_ID, parasite); success = gimp_image_attach_parasite (image_ID, parasite);
gimp_parasite_free (parasite); gimp_parasite_free (parasite);