Move Qt::CursorMoveStyle docs to the right file.
authorFrederik Gladhorn <frederik.gladhorn@nokia.com>
Fri, 17 Aug 2012 13:10:01 +0000 (15:10 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 23 Aug 2012 00:55:17 +0000 (02:55 +0200)
Change-Id: I26cc7336b33495a2649285cfeddeadec62e94d83
Reviewed-by: J-P Nurmi <j-p.nurmi@nokia.com>
Reviewed-by: Jan-Arve Sæther <jan-arve.saether@nokia.com>
src/corelib/global/qnamespace.qdoc
src/gui/text/qtextcursor.cpp

index 338edc5..d755aed 100644 (file)
 */
 
 /*!
+    \enum Qt::CursorMoveStyle
+
+    This enum describes the movement style available to text cursors. The options
+    are:
+
+    \value LogicalMoveStyle Within a left-to-right text block, decrease cursor
+    position when pressing left arrow key, increase cursor position when pressing
+    the right arrow key. If the text block is right-to-left, the opposite behavior
+    applies.
+    \value VisualMoveStyle Pressing the left arrow key will always cause the cursor
+    to move left, regardless of the text's writing direction. Pressing the right
+    arrow key will always cause the cursor to move right.
+*/
+
+/*!
     \enum Qt::TimerType
 
     The timer type indicates how accurate a timer can be.
index 2beda0d..35f1e0f 100644 (file)
@@ -2585,19 +2585,4 @@ QTextDocument *QTextCursor::document() const
     return 0; // document went away
 }
 
-/*!
-    \enum Qt::CursorMoveStyle
-
-    This enum describes the movement style available to text cursors. The options
-    are:
-
-    \value LogicalMoveStyle Within a left-to-right text block, decrease cursor
-    position when pressing left arrow key, increase cursor position when pressing
-    the right arrow key. If the text block is right-to-left, the opposite behavior
-    applies.
-    \value VisualMoveStyle Pressing the left arrow key will always cause the cursor
-    to move left, regardless of the text's writing direction. Pressing the right
-    arrow key will always cause the cursor to move right.
-*/
-
 QT_END_NAMESPACE