summaryrefslogtreecommitdiff
path: root/pango/pango-item.c
diff options
context:
space:
mode:
authorEvan Nemerson <evan@nemerson.com>2014-05-30 19:21:11 -0700
committerEvan Nemerson <evan@nemerson.com>2014-10-16 13:09:34 -0700
commitfa6ded9b0d065634481d8ae4126fdea0b88e3558 (patch)
tree151efb6762bf467ada2ac104770fdefd293b7248 /pango/pango-item.c
parentadb5a4e86b09b0935ec1dd71bf05ac41807c84a2 (diff)
downloadpango-fa6ded9b0d065634481d8ae4126fdea0b88e3558.tar.gz
Add many missing nullability annotations.
https://bugzilla.gnome.org/show_bug.cgi?id=731022
Diffstat (limited to 'pango/pango-item.c')
-rw-r--r--pango/pango-item.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pango/pango-item.c b/pango/pango-item.c
index 0437d9ce..8c368874 100644
--- a/pango/pango-item.c
+++ b/pango/pango-item.c
@@ -42,13 +42,13 @@ pango_item_new (void)
/**
* pango_item_copy:
- * @item: a #PangoItem, may be %NULL
+ * @item: (nullable): a #PangoItem, may be %NULL
*
* Copy an existing #PangoItem structure.
*
- * Return value: the newly allocated #PangoItem, which should
- * be freed with pango_item_free(), or %NULL if
- * @item was NULL.
+ * Return value: (nullable): the newly allocated #PangoItem, which
+ * should be freed with pango_item_free(), or %NULL if
+ * @item was %NULL.
**/
PangoItem *
pango_item_copy (PangoItem *item)
@@ -84,7 +84,7 @@ pango_item_copy (PangoItem *item)
/**
* pango_item_free:
- * @item: a #PangoItem, may be %NULL
+ * @item: (nullable): a #PangoItem, may be %NULL
*
* Free a #PangoItem and all associated memory.
**/