aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@nokia.com>2012-04-26 16:15:24 +0200
committerQt by Nokia <qt-info@nokia.com>2012-04-27 11:40:19 +0200
commitd5295d1c822745b1a1dd80c5521bbda61d4a3eda (patch)
treeb3ddfe110c4988b371e02d352a30640b41c7f03f /doc
parentb765e3a84bc531878a5cc0d451451a94565b13f8 (diff)
Doc: Fixing errors due to incorrect QDoc commands.
-\hint, \QQV are not supported -fixed \a -\sa requires a comma to separate entries Change-Id: Iae68fd92d7fbc5988e4ec801ab095fd717728036 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/qml/debugging.qdoc2
-rw-r--r--doc/src/qml/qmlruntime.qdoc6
2 files changed, 3 insertions, 5 deletions
diff --git a/doc/src/qml/debugging.qdoc b/doc/src/qml/debugging.qdoc
index 562464a419..462b2feb4c 100644
--- a/doc/src/qml/debugging.qdoc
+++ b/doc/src/qml/debugging.qdoc
@@ -47,7 +47,7 @@ function f(a, b) {
The output is generated using the qDebug, qWarning, qCritical methods in C++
(see also http://doc.qt.nokia.com/latest/debug.html#warning-and-debugging-messages).
-\hint Setting the environment variable QML_CONSOLE_EXTENDED also prints the source
+Setting the environment variable QML_CONSOLE_EXTENDED also prints the source
code location of the call.
\section2 Assert
diff --git a/doc/src/qml/qmlruntime.qdoc b/doc/src/qml/qmlruntime.qdoc
index e5472aed99..831323474f 100644
--- a/doc/src/qml/qmlruntime.qdoc
+++ b/doc/src/qml/qmlruntime.qdoc
@@ -37,7 +37,7 @@ and it also provides access to third-party QML elements and modules.
Applications that use QML need to invoke the QML runtime in order to
execute QML documents. This can be done by creating a QQuickView
or a QQmlEngine, as described below. In addition, the Declarative UI
-package includes the \QQV tool, which loads \c .qml files. This tool is
+package includes the qmlscene tool, which loads \c .qml files. This tool is
useful for developing and testing QML code without the need to write
a C++ application to load the QML runtime.
@@ -134,12 +134,10 @@ as details on including QML files through \l{The Qt Resource System}{Qt's Resour
\section1 Developing and Prototyping with QML Viewer
-The Declarative UI package includes a QML runtime tool, the \QQV, which loads
+The Declarative UI package includes a QML runtime tool, qmlscene, which loads
and displays QML documents. This is useful during the application development
phase for prototyping QML-based applications without writing your own C++
applications to invoke the QML runtime.
-See the \l{QML Viewer} documentation for more details.
-
*/