diff --git a/ChangeLog b/ChangeLog index b126c7c5dd..8f6683a401 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-19 Michael Natterer + + * libgimp/gimp.[ch] (gimp_destroy_paramdefs): fix docs: there is + no such thing as gimp_query_procedure(), the function is called + gimp_procedural_db_proc_info(). + 2008-09-19 Sven Neumann * plug-ins/script-fu/scheme-wrapper.c diff --git a/libgimp/gimp.c b/libgimp/gimp.c index 84af6d8f6c..9baa66dc85 100644 --- a/libgimp/gimp.c +++ b/libgimp/gimp.c @@ -998,7 +998,8 @@ gimp_destroy_params (GimpParam *params, * @paramdefs: the #GimpParamDef array to destroy * @n_params: the number of elements in the array * - * Destroys a #GimpParamDef array as returned by gimp_query_procedure() + * Destroys a #GimpParamDef array as returned by + * gimp_procedural_db_proc_info(). **/ void gimp_destroy_paramdefs (GimpParamDef *paramdefs, diff --git a/libgimp/gimp.h b/libgimp/gimp.h index 8717ddee93..156530fa98 100644 --- a/libgimp/gimp.h +++ b/libgimp/gimp.h @@ -302,7 +302,7 @@ void gimp_destroy_params (GimpParam *params, /* Destroy the an array of GimpParamDef's. This is useful for * destroying the return values returned by a call to - * 'gimp_query_procedure'. + * 'gimp_procedural_db_proc_info'. */ void gimp_destroy_paramdefs (GimpParamDef *paramdefs, gint n_params);