From c88eb9ead7f2a3e99fe1109407e1c9e88f869256 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 2 Jan 2007 04:37:31 +0000 Subject: [PATCH] Mention in the docs that the return value is NULL-terminated. (#383373, 2007-01-01 Matthias Clasen * gtk/gtkcontainer.c (gtk_container_class_list_child_properties): Mention in the docs that the return value is NULL-terminated. (#383373, Christian Neumair) svn path=/trunk/; revision=17007 --- ChangeLog | 6 ++++++ gtk/gtkcontainer.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index cf847175f2..163957c869 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-01-01 Matthias Clasen + + * gtk/gtkcontainer.c (gtk_container_class_list_child_properties): + Mention in the docs that the return value is + NULL-terminated. (#383373, Christian Neumair) + 2007-01-01 Matthias Clasen * gtk/gtkicontheme.c (load_themes): Waste less time diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index b7ced4e359..6c11502806 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -761,8 +761,8 @@ gtk_container_class_find_child_property (GObjectClass *cclass, * gtk_container_class_list_child_properties: * @cclass: a #GtkContainerClass * @n_properties: location to return the number of child properties found - * @returns: a newly allocated array of #GParamSpec*. The array must be - * freed with g_free(). + * @returns: a newly allocated %NULL-terminated array of #GParamSpec*. + * The array must be freed with g_free(). * * Returns all child properties of a container class. */