diff options
author | Laszlo Pandy <lpandy@src.gnome.org> | 2011-02-04 14:30:59 +0100 |
---|---|---|
committer | Laszlo Pandy <lpandy@src.gnome.org> | 2011-02-04 14:30:59 +0100 |
commit | a7a0db3caa56c9924d823017a23dbc0e71f3ba60 (patch) | |
tree | fbee064bf536b3fecb5c0320bdbbbfc18d238dba | |
parent | 34448ab65f41dfb0c098a3e0d112b084ef84f8d8 (diff) | |
download | pango-a7a0db3caa56c9924d823017a23dbc0e71f3ba60.tar.gz |
[GI] Annotate out arguments of pango_parse_markup().
-rw-r--r-- | pango/pango-markup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pango/pango-markup.c b/pango/pango-markup.c index b1a8c9c1..394be34e 100644 --- a/pango/pango-markup.c +++ b/pango/pango-markup.c @@ -552,9 +552,9 @@ static const GMarkupParser pango_markup_parser = { * @markup_text: markup to parse (see <link linkend="PangoMarkupFormat">markup format</link>) * @length: length of @markup_text, or -1 if nul-terminated * @accel_marker: character that precedes an accelerator, or 0 for none - * @attr_list: address of return location for a #PangoAttrList, or %NULL - * @text: address of return location for text with tags stripped, or %NULL - * @accel_char: address of return location for accelerator char, or %NULL + * @attr_list: (out): address of return location for a #PangoAttrList, or %NULL + * @text: (out): address of return location for text with tags stripped, or %NULL + * @accel_char: (out): address of return location for accelerator char, or %NULL * @error: address of return location for errors, or %NULL * * Parses marked-up text (see |