From: Ryan Lortie Date: Mon, 21 Nov 2011 16:39:52 +0000 (-0500) Subject: Missed a couple of @returns X-Git-Tag: 2.31.2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f1fb417bf0425fc4d5c277ffb86b881fd3f1c48;p=platform%2Fupstream%2Fglib.git Missed a couple of @returns --- diff --git a/glib/gvariant.c b/glib/gvariant.c index 859cfbb..6e15c41 100644 --- a/glib/gvariant.c +++ b/glib/gvariant.c @@ -3109,7 +3109,6 @@ struct heap_builder /** * g_variant_builder_new: * @type: a container type - * @returns: (transfer full): a #GVariantBuilder * * Allocates and initialises a new #GVariantBuilder. * @@ -3121,6 +3120,8 @@ struct heap_builder * the stack of the calling function and initialise it with * g_variant_builder_init(). * + * Returns: (transfer full): a #GVariantBuilder + * * Since: 2.24 **/ GVariantBuilder * @@ -3167,13 +3168,14 @@ g_variant_builder_unref (GVariantBuilder *builder) /** * g_variant_builder_ref: * @builder: a #GVariantBuilder allocated by g_variant_builder_new() - * @returns: (transfer full): a new reference to @builder * * Increases the reference count on @builder. * * Don't call this on stack-allocated #GVariantBuilder instances or bad * things will happen. * + * Returns: (transfer full): a new reference to @builder + * * Since: 2.24 **/ GVariantBuilder * @@ -3515,7 +3517,6 @@ g_variant_make_array_type (GVariant *element) /** * g_variant_builder_end: * @builder: a #GVariantBuilder - * @returns: (transfer none): a new, floating, #GVariant * * Ends the builder process and returns the constructed value. * @@ -3532,6 +3533,8 @@ g_variant_make_array_type (GVariant *element) * have been added; in this case it is impossible to infer the type of * the empty array. * + * Returns: (transfer none): a new, floating, #GVariant + * * Since: 2.24 **/ GVariant *