aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorNico Vertriest <nico.vertriest@digia.com>2015-02-27 15:26:49 +0100
committerNico Vertriest <nico.vertriest@digia.com>2015-03-05 14:35:49 +0000
commitf1b7fa93a35c799f69fb0f55aa457b30eb217eef (patch)
tree527a054f2796a919e339b14cf783eef11d4a4c6a /examples
parent7b29a983fa794291ff8ec7f580d4c03969ebe34b (diff)
Doc: Changed title GridView example
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>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/draganddrop/doc/src/draganddrop.qdoc12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/quick/draganddrop/doc/src/draganddrop.qdoc b/examples/quick/draganddrop/doc/src/draganddrop.qdoc
index e1e0134596..ee10e77d72 100644
--- a/examples/quick/draganddrop/doc/src/draganddrop.qdoc
+++ b/examples/quick/draganddrop/doc/src/draganddrop.qdoc
@@ -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.
@@ -48,16 +48,16 @@
\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.