mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
docs: Use the correct terminology for g_array_free
GArray uses the term clear_func (eg., g_array_set_clear_func), while element_free_func comes from GPtrArray. https://gitlab.gnome.org/GNOME/glib/merge_requests/348
This commit is contained in:
parent
bec7e2fa78
commit
30ccd6f01b
@ -319,11 +319,11 @@ g_array_get_element_size (GArray *array)
|
|||||||
*
|
*
|
||||||
* Frees the memory allocated for the #GArray. If @free_segment is
|
* Frees the memory allocated for the #GArray. If @free_segment is
|
||||||
* %TRUE it frees the memory block holding the elements as well and
|
* %TRUE it frees the memory block holding the elements as well and
|
||||||
* also each element if @array has a @element_free_func set. Pass
|
* also each element if @array has a @clear_func set. Pass %FALSE if
|
||||||
* %FALSE if you want to free the #GArray wrapper but preserve the
|
* you want to free the #GArray wrapper but preserve the underlying
|
||||||
* underlying array for use elsewhere. If the reference count of @array
|
* array for use elsewhere. If the reference count of @array is
|
||||||
* is greater than one, the #GArray wrapper is preserved but the size
|
* greater than one, the #GArray wrapper is preserved but the size of
|
||||||
* of @array will be set to zero.
|
* @array will be set to zero.
|
||||||
*
|
*
|
||||||
* If array elements contain dynamically-allocated memory, they should
|
* If array elements contain dynamically-allocated memory, they should
|
||||||
* be freed separately.
|
* be freed separately.
|
||||||
|
Loading…
Reference in New Issue
Block a user