diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 06:28:24 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 17:20:32 +0100 |
commit | 729c82395539897e276f4dec41550de9b2a0db88 (patch) | |
tree | 8494100959c1ffd50741a9fe8909d6cca7e63745 /gtk/gtktreeselection.h | |
parent | 714d9bc4078898bfb9513e5e17c2bb3c935eef5f (diff) | |
download | gtk+-729c82395539897e276f4dec41550de9b2a0db88.tar.gz |
[GI] Mark callbacks' context parameter with (closure) annotation.
Diffstat (limited to 'gtk/gtktreeselection.h')
-rw-r--r-- | gtk/gtktreeselection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktreeselection.h b/gtk/gtktreeselection.h index 36cfafa7fd..9dfdb9f5d2 100644 --- a/gtk/gtktreeselection.h +++ b/gtk/gtktreeselection.h @@ -44,7 +44,7 @@ typedef struct _GtkTreeSelectionPrivate GtkTreeSelectionPrivate; * @model: A #GtkTreeModel being viewed * @path: The #GtkTreePath of the row in question * @path_currently_selected: %TRUE, if the path is currently selected - * @data: user data + * @data: (closure): user data * * A function used by gtk_tree_selection_set_select_function() to filter * whether or not a row may be selected. It is called whenever a row's @@ -64,7 +64,7 @@ typedef gboolean (* GtkTreeSelectionFunc) (GtkTreeSelection *selection, * @model: The #GtkTreeModel being viewed * @path: The #GtkTreePath of a selected row * @iter: A #GtkTreeIter pointing to a selected row - * @data: user data + * @data: (closure): user data * * A function used by gtk_tree_selection_selected_foreach() to map all * selected rows. It will be called on every selected row in the view. |