fix the documentation

2002-12-21  Havoc Pennington  <hp@pobox.com>

	* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
This commit is contained in:
Havoc Pennington 2002-12-21 15:51:38 +00:00 committed by Havoc Pennington
parent 968f6f2b9f
commit 535c4b5203
7 changed files with 37 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -1,3 +1,7 @@
2002-12-21 Havoc Pennington <hp@pobox.com>
* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation
Fri Dec 20 15:23:26 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===

View File

@ -7704,11 +7704,19 @@ gtk_text_view_starts_display_line (GtkTextView *text_view,
* gtk_text_view_move_visually:
* @text_view: a #GtkTextView
* @iter: a #GtkTextIter
* @count: number of lines to move
*
* Moves @iter up or down by @count display (wrapped) lines.
* See gtk_text_view_forward_display_line() for an explanation of
* display lines vs. paragraphs.
* @count: number of characters to move (negative moves left, positive moves right)
*
* Move the iterator a given number of characters visually, treating
* it as the strong cursor position. If @count is positive, then the
* new strong cursor position will be @count positions to the right of
* the old cursor position. If @count is negative then the new strong
* cursor position will be @count positions to the left of the old
* cursor position.
*
* In the presence of bidirection text, the correspondence
* between logical and visual order will depend on the direction
* of the current run, and there may be jumps when the cursor
* is moved off of the end of a run.
*
* Return value: %TRUE if @iter moved and is not on the end iterator
**/