From ba09fa8500e998b700b874ed10468059c34b9916 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 7 Mar 2019 17:39:21 +0000 Subject: [PATCH] gvaluearray: Mark the whole of GValueArray as deprecated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is not new; all of its methods have been deprecated for a long time. Make the deprecation more obvious, however, by marking the whole section as deprecated. Note that GArray can’t *quite* do everything that GValueArray could. See #1069 for work to fix this. This documentation block can be updated again once that’s fixed. Signed-off-by: Philip Withnall --- gobject/gvaluearray.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gobject/gvaluearray.c b/gobject/gvaluearray.c index 553152d5a..83e03f7ec 100644 --- a/gobject/gvaluearray.c +++ b/gobject/gvaluearray.c @@ -55,6 +55,9 @@ * GArray *array = g_array_sized_new (FALSE, TRUE, sizeof (GValue), 10); * g_array_set_clear_func (array, (GDestroyNotify) g_value_unset); * ]| + * + * Deprecated: 2.32: Use #GArray instead, if possible for the given use case, + * as described above. */ #define GROUP_N_VALUES (8) /* power of 2 !! */