diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-09-21 00:18:11 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-09-21 00:18:11 -0400 |
commit | e0aa12eb0ab8d20a2bc9de7d89c779d3566ee669 (patch) | |
tree | 63a25f9dd34d5a7b8776c37bccb197bf5d63bfb0 /gtk/gtkentrycompletion.c | |
parent | ca251cf1d45ed6be71065d058313b9b22d36f10d (diff) | |
download | gtk+-e0aa12eb0ab8d20a2bc9de7d89c779d3566ee669.tar.gz |
Tons of transfer annotations
Diffstat (limited to 'gtk/gtkentrycompletion.c')
-rw-r--r-- | gtk/gtkentrycompletion.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkentrycompletion.c b/gtk/gtkentrycompletion.c index 266ff715c6..0e48e85d3a 100644 --- a/gtk/gtkentrycompletion.c +++ b/gtk/gtkentrycompletion.c @@ -1012,7 +1012,7 @@ gtk_entry_completion_new (void) * * Gets the entry @completion has been attached to. * - * Return value: The entry @completion has been attached to. + * Return value: (transfer none): The entry @completion has been attached to. * * Since: 2.4 */ @@ -1076,7 +1076,8 @@ gtk_entry_completion_set_model (GtkEntryCompletion *completion, * Returns the model the #GtkEntryCompletion is using as data source. * Returns %NULL if the model is unset. * - * Return value: A #GtkTreeModel, or %NULL if none is currently being used. + * Return value: (transfer none): A #GtkTreeModel, or %NULL if none + * is currently being used. * * Since: 2.4 */ @@ -1087,7 +1088,7 @@ gtk_entry_completion_get_model (GtkEntryCompletion *completion) if (!completion->priv->filter_model) return NULL; - + return gtk_tree_model_filter_get_model (completion->priv->filter_model); } |