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-script.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-script.c')
-rw-r--r-- | pango/pango-script.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pango/pango-script.c b/pango/pango-script.c index 7116a0a4..f201b3aa 100644 --- a/pango/pango-script.c +++ b/pango/pango-script.c @@ -170,9 +170,9 @@ pango_script_iter_free (PangoScriptIter *iter) /** * pango_script_iter_get_range: * @iter: a #PangoScriptIter - * @start: (out) (allow-none): location to store start position of the range, or %NULL - * @end: (out) (allow-none): location to store end position of the range, or %NULL - * @script: (out) (allow-none): location to store script for range, or %NULL + * @start: (out) (optional): location to store start position of the range, or %NULL + * @end: (out) (optional): location to store end position of the range, or %NULL + * @script: (out) (optional): location to store script for range, or %NULL * * Gets information about the range to which @iter currently points. * The range is the set of locations p where *start <= p < *end. |