mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
libgimpbase: more API doc fixes
This commit is contained in:
parent
3daef677ca
commit
d91ff74820
2 changed files with 4 additions and 7 deletions
|
@ -335,7 +335,7 @@ gimp_file_has_extension (GFile *file,
|
||||||
*
|
*
|
||||||
* Since: GIMP 2.10
|
* Since: GIMP 2.10
|
||||||
*
|
*
|
||||||
* Return value: %TRUE on success, %FALSE otherwise. On %FASLE, @error
|
* Return value: %TRUE on success, %FALSE otherwise. On %FALSE, @error
|
||||||
* is set.
|
* is set.
|
||||||
**/
|
**/
|
||||||
gboolean
|
gboolean
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
* @short_description: A container structure to maintain an array of
|
* @short_description: A container structure to maintain an array of
|
||||||
* generic values
|
* generic values
|
||||||
* @see_also: #GValue, #GParamSpecValueArray, gimp_param_spec_value_array()
|
* @see_also: #GValue, #GParamSpecValueArray, gimp_param_spec_value_array()
|
||||||
* @title: Value arrays
|
* @title: GimpValueArray
|
||||||
*
|
*
|
||||||
* The prime purpose of a #GimpValueArray is for it to be used as an
|
* The prime purpose of a #GimpValueArray is for it to be used as an
|
||||||
* object property that holds an array of values. A #GimpValueArray wraps
|
* object property that holds an array of values. A #GimpValueArray wraps
|
||||||
|
@ -48,8 +48,6 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GimpValueArray:
|
* GimpValueArray:
|
||||||
* @n_values: number of values contained in the array
|
|
||||||
* @values: array of values
|
|
||||||
*
|
*
|
||||||
* A #GimpValueArray contains an array of #GValue elements.
|
* A #GimpValueArray contains an array of #GValue elements.
|
||||||
*
|
*
|
||||||
|
@ -255,7 +253,7 @@ gimp_value_array_append (GimpValueArray *value_array,
|
||||||
/**
|
/**
|
||||||
* gimp_value_array_insert:
|
* gimp_value_array_insert:
|
||||||
* @value_array: #GimpValueArray to add an element to
|
* @value_array: #GimpValueArray to add an element to
|
||||||
* @index: insertion position, must be <= value_array->n_values
|
* @index: insertion position, must be <= gimp_value_array_length()
|
||||||
* @value: (allow-none): #GValue to copy into #GimpValueArray, or %NULL
|
* @value: (allow-none): #GValue to copy into #GimpValueArray, or %NULL
|
||||||
*
|
*
|
||||||
* Insert a copy of @value at specified position into @value_array. If @value
|
* Insert a copy of @value at specified position into @value_array. If @value
|
||||||
|
@ -297,8 +295,7 @@ gimp_value_array_insert (GimpValueArray *value_array,
|
||||||
* gimp_value_array_remove:
|
* gimp_value_array_remove:
|
||||||
* @value_array: #GimpValueArray to remove an element from
|
* @value_array: #GimpValueArray to remove an element from
|
||||||
* @index: position of value to remove, which must be less than
|
* @index: position of value to remove, which must be less than
|
||||||
* <code>value_array-><link
|
* gimp_value_array_length()
|
||||||
* linkend="GimpValueArray.n-values">n_values</link></code>
|
|
||||||
*
|
*
|
||||||
* Remove the value at position @index from @value_array.
|
* Remove the value at position @index from @value_array.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue