diff options
author | Laszlo Pandy <lpandy@src.gnome.org> | 2011-02-09 16:55:36 +0100 |
---|---|---|
committer | Laszlo Pandy <lpandy@src.gnome.org> | 2011-02-09 16:55:36 +0100 |
commit | 12de1ecf9ab9c925e7021288b10175af74007e94 (patch) | |
tree | d1dc7f3362c112b0b5552fea87a02da06bc8da3a /pango/pango-markup.c | |
parent | a7a0db3caa56c9924d823017a23dbc0e71f3ba60 (diff) | |
download | pango-12de1ecf9ab9c925e7021288b10175af74007e94.tar.gz |
[GI] Add (allow-none) annotations to pango_parse_markup().
Diffstat (limited to 'pango/pango-markup.c')
-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 394be34e..abefaf82 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: (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 + * @attr_list: (out) (allow-none): address of return location for a #PangoAttrList, or %NULL + * @text: (out) (allow-none): address of return location for text with tags stripped, or %NULL + * @accel_char: (out) (allow-none): address of return location for accelerator char, or %NULL * @error: address of return location for errors, or %NULL * * Parses marked-up text (see |