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/glyphstring.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/glyphstring.c')
-rw-r--r-- | pango/glyphstring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c index 6c2338f1..6d54d246 100644 --- a/pango/glyphstring.c +++ b/pango/glyphstring.c @@ -264,9 +264,9 @@ pango_glyph_string_extents_range (PangoGlyphString *glyphs, * pango_glyph_string_extents: * @glyphs: a `PangoGlyphString` * @font: a `PangoFont` - * @ink_rect: (out) (allow-none): rectangle used to store the extents of the glyph string + * @ink_rect: (out) (optional): rectangle used to store the extents of the glyph string * as drawn or %NULL to indicate that the result is not needed. - * @logical_rect: (out) (allow-none): rectangle used to store the logical extents of the + * @logical_rect: (out) (optional): rectangle used to store the logical extents of the * glyph string or %NULL to indicate that the result is not needed. * * Compute the logical and ink extents of a glyph string. |