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/gtktextbuffer.c | |
parent | ca251cf1d45ed6be71065d058313b9b22d36f10d (diff) | |
download | gtk+-e0aa12eb0ab8d20a2bc9de7d89c779d3566ee669.tar.gz |
Tons of transfer annotations
Diffstat (limited to 'gtk/gtktextbuffer.c')
-rw-r--r-- | gtk/gtktextbuffer.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gtk/gtktextbuffer.c b/gtk/gtktextbuffer.c index 9f364a94bd..0450f48483 100644 --- a/gtk/gtktextbuffer.c +++ b/gtk/gtktextbuffer.c @@ -1986,7 +1986,7 @@ gtk_text_buffer_insert_child_anchor (GtkTextBuffer *buffer, * owned by the buffer; no reference count is returned to * the caller of gtk_text_buffer_create_child_anchor(). * - * Return value: the created child anchor + * Return value: (transfer none): the created child anchor **/ GtkTextChildAnchor* gtk_text_buffer_create_child_anchor (GtkTextBuffer *buffer, @@ -2457,7 +2457,6 @@ gtk_text_buffer_select_range (GtkTextBuffer *buffer, * @first_property_name: (allow-none): name of first property to set, or %NULL * @Varargs: %NULL-terminated list of property names and values * - * * Creates a tag and adds it to the tag table for @buffer. * Equivalent to calling gtk_text_tag_new() and then adding the * tag to the buffer's tag table. The returned tag is owned by @@ -2471,8 +2470,8 @@ gtk_text_buffer_select_range (GtkTextBuffer *buffer, * The @first_property_name argument and subsequent arguments are a list * of properties to set on the tag, as with g_object_set(). * - * Return value: a new tag - **/ + * Return value: (transfer none): a new tag + */ GtkTextTag* gtk_text_buffer_create_tag (GtkTextBuffer *buffer, const gchar *tag_name, @@ -3763,10 +3762,10 @@ remove_all_selection_clipboards (GtkTextBuffer *buffer) * at the cursor * @default_editable: whether the buffer is editable by default * - * Pastes the contents of a clipboard at the insertion point, or at - * @override_location. (Note: pasting is asynchronous, that is, we'll - * ask for the paste data and return, and at some point later after - * the main loop runs, the paste data will be inserted.) + * Pastes the contents of a clipboard at the insertion point, or + * at @override_location. (Note: pasting is asynchronous, that is, + * we'll ask for the paste data and return, and at some point later + * after the main loop runs, the paste data will be inserted.) **/ void gtk_text_buffer_paste_clipboard (GtkTextBuffer *buffer, |