diff options
author | Evan Nemerson <evan@nemerson.com> | 2014-05-26 09:24:00 -0700 |
---|---|---|
committer | Evan Nemerson <evan@nemerson.com> | 2014-05-27 21:10:32 -0700 |
commit | e568903360be156973c5767cda2f3248e722d507 (patch) | |
tree | 525398ae2cf266a82d4870975aca66ab399b9073 /gtk/gtktreemodel.h | |
parent | 2388c69f0ca8f6eb773267b582d6fdd88f3240cc (diff) | |
download | gtk+-e568903360be156973c5767cda2f3248e722d507.tar.gz |
gtk: fix many callback annotations to include closure information
Without this information introspection-based consumers don't realize
they can include context information, but instead think that they
receive an extra gpointer argument (which they don't know how to
handle).
https://bugzilla.gnome.org/show_bug.cgi?id=730745
Diffstat (limited to 'gtk/gtktreemodel.h')
-rw-r--r-- | gtk/gtktreemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktreemodel.h b/gtk/gtktreemodel.h index 9eef7c62ce..3edece2695 100644 --- a/gtk/gtktreemodel.h +++ b/gtk/gtktreemodel.h @@ -47,7 +47,7 @@ typedef struct _GtkTreeModelIface GtkTreeModelIface; * @model: the #GtkTreeModel being iterated * @path: the current #GtkTreePath * @iter: the current #GtkTreeIter - * @data: The user data passed to gtk_tree_model_foreach() + * @data: (closure): The user data passed to gtk_tree_model_foreach() * * Type of the callback passed to gtk_tree_model_foreach() to * iterate over the rows in a tree model. |