diff options
author | Johan Dahlin <johan@gnome.org> | 2010-02-19 14:53:17 -0200 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2010-02-19 17:57:51 -0200 |
commit | fe852721123fb7dc5749c690613ca6e209363e2f (patch) | |
tree | 62ac68aab7296dbea80b199a0e1769ba5621514a /gtk/gtktextiter.c | |
parent | 347d406f80f2140a466da30764171cd92aa7d7ea (diff) | |
download | gtk+-fe852721123fb7dc5749c690613ca6e209363e2f.tar.gz |
[annotations] Add allow-none
This commit was created using a script that searched for all docstrings
containing a parameter and the string 'or %NULL'.
Gdk backends and demos excluded as they are not part of a public API
https://bugzilla.gnome.org/show_bug.cgi?id=610474
Diffstat (limited to 'gtk/gtktextiter.c')
-rw-r--r-- | gtk/gtktextiter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktextiter.c b/gtk/gtktextiter.c index 360c855a3e..aa5fbc442d 100644 --- a/gtk/gtktextiter.c +++ b/gtk/gtktextiter.c @@ -1175,7 +1175,7 @@ gtk_text_iter_begins_tag (const GtkTextIter *iter, /** * gtk_text_iter_ends_tag: * @iter: an iterator - * @tag: a #GtkTextTag, or %NULL + * @tag: (allow-none): a #GtkTextTag, or %NULL * * Returns %TRUE if @tag is toggled off at exactly this point. If @tag * is %NULL, returns %TRUE if any tag is toggled off at this point. Note @@ -4308,7 +4308,7 @@ matches_pred (GtkTextIter *iter, * @iter: a #GtkTextIter * @pred: a function to be called on each character * @user_data: user data for @pred - * @limit: search limit, or %NULL for none + * @limit: (allow-none): search limit, or %NULL for none * * Advances @iter, calling @pred on each character. If * @pred returns %TRUE, returns %TRUE and stops scanning. @@ -4346,7 +4346,7 @@ gtk_text_iter_forward_find_char (GtkTextIter *iter, * @iter: a #GtkTextIter * @pred: function to be called on each character * @user_data: user data for @pred - * @limit: search limit, or %NULL for none + * @limit: (allow-none): search limit, or %NULL for none * * Same as gtk_text_iter_forward_find_char(), but goes backward from @iter. * |