From: Alberto Ruiz Date: Mon, 25 Apr 2011 17:15:20 +0000 (+0100) Subject: adding (out) introspection metadata to pango_parse_enum X-Git-Tag: 1.29.1~84 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=918dd91598bba4916f98d9866e6715232e0db322;p=platform%2Fupstream%2Fpango.git adding (out) introspection metadata to pango_parse_enum --- diff --git a/pango/pango-utils.c b/pango/pango-utils.c index 00c55c3..d030e8b 100644 --- a/pango/pango-utils.c +++ b/pango/pango-utils.c @@ -774,9 +774,9 @@ parse_int (const char *word, * pango_parse_enum: * @type: enum type to parse, eg. %PANGO_TYPE_ELLIPSIZE_MODE. * @str: (allow-none): string to parse. May be %NULL. - * @value: (allow-none): integer to store the result in, or %NULL. + * @value: (out) (allow-none): integer to store the result in, or %NULL. * @warn: if %TRUE, issue a g_warning() on bad input. - * @possible_values: (allow-none): place to store list of possible values on failure, or %NULL. + * @possible_values: (out) (allow-none): place to store list of possible values on failure, or %NULL. * * Parses an enum type and stores the result in @value. *