aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-07-16 13:03:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-23 13:55:40 +0200
commit7cbd086c81fcec6cd4a5d6b84c43d647f17fa7f1 (patch)
tree3f0b33be55d974b96063e9bdb79630deadc975ba /src/quick/doc
parentcf62652614676f58f9c45102a67a497c81805a36 (diff)
doc: Eliminate still more cases of multiple topic commands
This fixes the dynamic view tutotial based on the pets model example. Several instances where \page and \example occur in the same comment are corrected by removing the \page and leaving the \example. And the links in the tutorial's list of chapters are corrected. Task-number: QTBUG-31578 Change-Id: I5a35b55806e33da5c82c37db1193f96fe74f038a Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/quick/doc')
-rw-r--r--src/quick/doc/src/dynamicview-tutorial.qdoc12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/quick/doc/src/dynamicview-tutorial.qdoc b/src/quick/doc/src/dynamicview-tutorial.qdoc
index fad09b396b..c579d0f7ef 100644
--- a/src/quick/doc/src/dynamicview-tutorial.qdoc
+++ b/src/quick/doc/src/dynamicview-tutorial.qdoc
@@ -38,10 +38,10 @@ data to dynamically sort all items in a view.
Tutorial chapters:
\list 1
-\li \l {quick/tutorials/dynamicview/dynamicview1}{A Simple ListView and Delegate}
-\li \l {quick/tutorials/dynamicview/dynamicview2}{Dragging View Items}
-\li \l {quick/tutorials/dynamicview/dynamicview3}{Moving Dragged Items}
-\li \l {quick/tutorials/dynamicview/dynamicview4}{Sorting Items}
+\li \l {QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate}{A Simple ListView and Delegate}
+\li \l {QML Dynamic View Ordering Tutorial 2 - Dragging View Items}{Dragging View Items}
+\li \l {QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items}{Moving Dragged Items}
+\li \l {QML Dynamic View Ordering Tutorial 4 - Sorting Items}{Sorting Items}
\endlist
All the code in this tutorial can be found in Qt's \c examples/quick/tutorials/dynamicview
@@ -49,7 +49,6 @@ directory.
*/
/*!
-\page qml-dynamicview-tutorial1.html
\title QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate
\contentspage QML Dynamic View Ordering Tutorial
\previouspage QML Dynamic View Ordering Tutorial
@@ -85,7 +84,6 @@ The second part of the application is the ListView itself to which we bind the m
*/
/*!
-\page qml-dynamicview-tutorial2.html
\title QML Dynamic View Ordering Tutorial 2 - Dragging View Items
\contentspage QML Dynamic View Ordering Tutorial
\previouspage QML Dynamic View Ordering Tutorial 1 - A Simple ListView and Delegate
@@ -129,7 +127,6 @@ so that is above other items in the stacking order and isn't obscured as it is d
*/
/*!
-\page qml-dynamicview-tutorial3.html
\title QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items
\contentspage QML Dynamic View Ordering Tutorial
\previouspage QML Dynamic View Ordering Tutorial 2 - Dragging View Items
@@ -182,7 +179,6 @@ property of the view and bind the \l {QtQuick2::VisualDataModel::model}{model} a
*/
/*!
-\page qml-dynamicview-tutorial4.html
\title QML Dynamic View Ordering Tutorial 4 - Sorting Items
\contentspage QML Dynamic View Ordering Tutorial
\previouspage QML Dynamic View Ordering Tutorial 3 - Moving Dragged Items