]> Pileus Git - ~andy/gtk/commitdiff
fix the documentation
authorHavoc Pennington <hp@pobox.com>
Sat, 21 Dec 2002 15:51:38 +0000 (15:51 +0000)
committerHavoc Pennington <hp@src.gnome.org>
Sat, 21 Dec 2002 15:51:38 +0000 (15:51 +0000)
2002-12-21  Havoc Pennington  <hp@pobox.com>

* gtk/gtktextview.c (gtk_text_view_move_visually): fix the documentation

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtktextview.c

index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 ===
index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (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 ===
index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (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 ===
index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (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 ===
index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (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 ===
index 21722077d1b00f8bd40987964677579694f6be82..c5402f54155a38ae96a6a6a3566357cce491365c 100644 (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 ===
index 252c00bcfa8f06c115e63e2e1c928478a4a25acd..ae31556140ba08559295b87affa54d4d95f6dd5b 100644 (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
  **/