diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-30 19:21:11 -0700 |
---|---|---|
committer | Evan Nemerson <evan@nemerson.com> | 2014-10-16 13:09:34 -0700 |
commit | fa6ded9b0d065634481d8ae4126fdea0b88e3558 (patch) | |
tree | 151efb6762bf467ada2ac104770fdefd293b7248 /pango/pango-glyph-item.c | |
parent | adb5a4e86b09b0935ec1dd71bf05ac41807c84a2 (diff) | |
download | pango-fa6ded9b0d065634481d8ae4126fdea0b88e3558.tar.gz |
Add many missing nullability annotations.
https://bugzilla.gnome.org/show_bug.cgi?id=731022
Diffstat (limited to 'pango/pango-glyph-item.c')
-rw-r--r-- | pango/pango-glyph-item.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pango/pango-glyph-item.c b/pango/pango-glyph-item.c index 647a31f3..1d4ff8ea 100644 --- a/pango/pango-glyph-item.c +++ b/pango/pango-glyph-item.c @@ -131,11 +131,11 @@ pango_glyph_item_split (PangoGlyphItem *orig, /** * pango_glyph_item_copy: - * @orig: a #PangoGlyphItem, may be %NULL + * @orig: (nullable): a #PangoGlyphItem, may be %NULL * * Make a deep copy of an existing #PangoGlyphItem structure. * - * Return value: the newly allocated #PangoGlyphItem, which should + * Return value: (nullable): the newly allocated #PangoGlyphItem, which should * be freed with pango_glyph_item_free(), or %NULL * if @orig was %NULL. * @@ -159,7 +159,7 @@ pango_glyph_item_copy (PangoGlyphItem *orig) /** * pango_glyph_item_free: - * @glyph_item: a #PangoGlyphItem, may be %NULL + * @glyph_item: (nullable): a #PangoGlyphItem, may be %NULL * * Frees a #PangoGlyphItem and resources to which it points. * @@ -186,11 +186,11 @@ G_DEFINE_BOXED_TYPE (PangoGlyphItem, pango_glyph_item, /** * pango_glyph_item_iter_copy: - * @orig: a #PangoGlyphItemIter, may be %NULL + * @orig: (nullable): a #PangoGlyphItemIter, may be %NULL * * Make a shallow copy of an existing #PangoGlyphItemIter structure. * - * Return value: the newly allocated #PangoGlyphItemIter, which should + * Return value: (nullable): the newly allocated #PangoGlyphItemIter, which should * be freed with pango_glyph_item_iter_free(), or %NULL * if @orig was %NULL. * @@ -213,7 +213,7 @@ pango_glyph_item_iter_copy (PangoGlyphItemIter *orig) /** * pango_glyph_item_iter_free: - * @iter: a #PangoGlyphItemIter, may be %NULL + * @iter: (nullable): a #PangoGlyphItemIter, may be %NULL * * Frees a #PangoGlyphItemIter created by pango_glyph_item_iter_copy(). * |