Doc: Changed title GridView example
authorNico Vertriest <nico.vertriest@digia.com>
Fri, 27 Feb 2015 14:26:49 +0000 (15:26 +0100)
committerNico Vertriest <nico.vertriest@digia.com>
Thu, 5 Mar 2015 14:35:49 +0000 (14:35 +0000)
Changed title to avoid conflict
between GridView QML type and example

Task-number: QTBUG-44640
Change-Id: I59c83489e4029c1586ec462f6643fff0ef80155d
Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
examples/quick/draganddrop/doc/src/draganddrop.qdoc

index e1e0134..ee10e77 100644 (file)
@@ -31,7 +31,7 @@
     \image qml-draganddrop-example.png
     \ingroup qtquickexamples
 
-    \e{Drag and Drop} is a collection of small QML examples relating to drag
+    \e{Drag and Drop} is a collection of small QML examples relating to the drag
     and drop functionality. For more information, visit the \l{Drag and Drop}
     page.
 
     \snippet draganddrop/tiles/DragTile.qml 0
     \snippet draganddrop/tiles/DragTile.qml 1
 
-    And a DropTile component which the dragged tiles can be dropped onto:
+    And a DropTile component on which the dragged tiles can be dropped:
 
     \snippet draganddrop/tiles/DropTile.qml 0
 
-    The keys property of the DropArea will only allow an item with a matching
-    key in its Drag.keys property to be dropped on it.
+    The keys property of the DropArea will only allow an item to be dropped on it if it
+    has a matching key in its Drag.keys property.
 
-    \section1 GridView
+    \section1 GridView Example
 
-    \e GridView adds drag and drop to a \l GridView, allowing you to reorder the
+    The \e {GridView Example} adds drag and drop to a \l GridView, allowing you to reorder the
     list. It also uses a \l DelegateModel to move a delegate item to the
     position of another item it is dragged over.