diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-19 07:39:39 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-19 07:39:39 -0400 |
commit | 75eee838a91bad404d211b002f26e9af3033f0d5 (patch) | |
tree | 183f9b72b96d5c8ee72979220312f977234c9016 /pango/pango-attributes.c | |
parent | 3940a1714e84b076d04d4638c88df3dba7d8014e (diff) | |
download | pango-75eee838a91bad404d211b002f26e9af3033f0d5.tar.gz |
introspection: Stop using allow-none
The allow-none annotation has been deprecated for a long
time already. Instead use optional and nullable everywhere.
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r-- | pango/pango-attributes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c index 225dc654..ff776ef2 100644 --- a/pango/pango-attributes.c +++ b/pango/pango-attributes.c @@ -968,9 +968,9 @@ pango_attr_shape_equal (const PangoAttribute *attr1, * @ink_rect: ink rectangle to assign to each character * @logical_rect: logical rectangle to assign to each character * @data: user data pointer - * @copy_func: (allow-none): function to copy @data when the + * @copy_func: (nullable): function to copy @data when the * attribute is copied. If %NULL, @data is simply copied as a pointer. - * @destroy_func: (allow-none): function to free @data when the + * @destroy_func: (nullable): function to free @data when the * attribute is freed, or %NULL * * Creates a new shape attribute. @@ -2167,9 +2167,9 @@ pango_attr_iterator_get (PangoAttrIterator *iterator, * an attribute in the `PangoAttrList` associated with the iterator, * so if you plan to keep it around, you must call: * pango_font_description_set_family (desc, pango_font_description_get_family (desc)). - * @language: (allow-none): if non-%NULL, location to store language tag + * @language: (out) (optional): if non-%NULL, location to store language tag * for item, or %NULL if none is found. - * @extra_attrs: (allow-none) (element-type Pango.Attribute) (transfer full): + * @extra_attrs: (out) (optional) (element-type Pango.Attribute) (transfer full): * if non-%NULL, location in which to store a list of non-font attributes * at the the current position; only the highest priority value of each * attribute will be added to this list. In order to free this value, you |