Annotate GtkTextBuffer insert methods

This commit is contained in:
Paolo Borelli
2010-07-31 14:01:41 +02:00
committed by Ignacio Casal Quinteiro
parent 7df17ad475
commit cffda84e93

View File

@ -921,7 +921,7 @@ gtk_text_buffer_emit_insert (GtkTextBuffer *buffer,
* gtk_text_buffer_insert: * gtk_text_buffer_insert:
* @buffer: a #GtkTextBuffer * @buffer: a #GtkTextBuffer
* @iter: a position in the buffer * @iter: a position in the buffer
* @text: UTF-8 format text to insert * @text: (array length=len) (element-type uint8): text in UTF-8 format
* @len: length of text in bytes, or -1 * @len: length of text in bytes, or -1
* *
* Inserts @len bytes of @text at position @iter. If @len is -1, * Inserts @len bytes of @text at position @iter. If @len is -1,
@ -949,7 +949,7 @@ gtk_text_buffer_insert (GtkTextBuffer *buffer,
/** /**
* gtk_text_buffer_insert_at_cursor: * gtk_text_buffer_insert_at_cursor:
* @buffer: a #GtkTextBuffer * @buffer: a #GtkTextBuffer
* @text: some text in UTF-8 format * @text: (array length=len) (element-type uint8): text in UTF-8 format
* @len: length of text, in bytes * @len: length of text, in bytes
* *
* Simply calls gtk_text_buffer_insert(), using the current * Simply calls gtk_text_buffer_insert(), using the current