libgimpbase: some annotation and doc fixes

This commit is contained in:
Michael Natterer 2019-08-07 23:32:15 +02:00
parent c6bcb3114f
commit b4bccc9808
2 changed files with 19 additions and 1 deletions

View File

@ -40,7 +40,7 @@
/* Courtesy of Austin Donnelly 06-04-2000 to address bug #2742 */
/**
* gimp_signal_private:
* gimp_signal_private: (skip)
* @signum: Selects signal to be handled see man 5 signal (or man 7 signal)
* @handler: Handler that maps to signum. Invoked by O/S.
* Handler gets signal that caused invocation. Corresponds

View File

@ -625,6 +625,24 @@ gimp_param_value_array_values_cmp (GParamSpec *pspec,
}
}
/**
* gimp_param_spec_value_array:
* @name: Canonical name of the property specified.
* @nick: Nick name of the property specified.
* @blurb: Description of the property specified.
* @element_spec: (nullable): #GParamSpec the contained array's elements
* have comply to, or %NULL.
* @flags: Flags for the property specified.
*
* Creates a new #GimpParamSpecValueArray specifying a
* #G_TYPE_VALUE_ARRAY property.
*
* See g_param_spec_internal() for details on property names.
*
* Returns: (transfer full): The newly created #GimpParamSpecValueArray.
*
* Since: 3.0
**/
GParamSpec *
gimp_param_spec_value_array (const gchar *name,
const gchar *nick,