From 8a6986089b79f9d6cbb7012d12087d2d2e42526c Mon Sep 17 00:00:00 2001 From: Bastian Winkler Date: Sat, 22 Jan 2011 12:51:31 +0100 Subject: [PATCH] model: Fix some GObject-Introspection annotations http://bugzilla.clutter-project.org/show_bug.cgi?id=2526 --- clutter/clutter-model.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clutter/clutter-model.c b/clutter/clutter-model.c index aa855b62b..d82ded1db 100644 --- a/clutter/clutter-model.c +++ b/clutter/clutter-model.c @@ -1499,7 +1499,7 @@ clutter_model_foreach (ClutterModel *model, * clutter_model_set_sort: * @model: a #ClutterModel * @column: the column to sort on - * @func: a #ClutterModelSortFunc, or #NULL + * @func: (allow-none): a #ClutterModelSortFunc, or #NULL * @user_data: user data to pass to @func, or #NULL * @notify: destroy notifier of @user_data, or #NULL * @@ -1536,7 +1536,7 @@ clutter_model_set_sort (ClutterModel *model, /** * clutter_model_set_filter: * @model: a #ClutterModel - * @func: a #ClutterModelFilterFunc, or #NULL + * @func: (allow-none): a #ClutterModelFilterFunc, or #NULL * @user_data: user data to pass to @func, or #NULL * @notify: destroy notifier of @user_data, or #NULL * @@ -1962,7 +1962,7 @@ clutter_model_iter_get (ClutterModelIter *iter, * clutter_model_iter_get_value: * @iter: a #ClutterModelIter * @column: column number to retrieve the value from - * @value: an empty #GValue to set + * @value: (out): an empty #GValue to set * * Sets an initializes @value to that at @column. When done with @value, * g_value_unset() needs to be called to free any allocated memory.