aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2018-04-18 16:14:11 +0200
committerKai Koehne <kai.koehne@qt.io>2018-04-20 06:45:50 +0000
commit9d90644db63f88e041d29f5a566db71a8ac25098 (patch)
treeff57a5f924cc884c52e121a81bcb3fda00a959ce /src/qml
parent8ec21eecb27441a67198629c01ad9d1cf87924cf (diff)
Document latest QtQml import version to be 2.11
Since commit 214fbaa57b73296a0 the latest minor version of the import is automatically the Qt minor version, so let's also document this. Change-Id: I232dcef923f3dfa5a6a2377bc8297b07fbe01f37 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml')
-rw-r--r--src/qml/doc/src/qmltypereference.qdoc6
-rw-r--r--src/qml/doc/src/qtqml.qdoc2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/doc/src/qmltypereference.qdoc b/src/qml/doc/src/qmltypereference.qdoc
index f2e0ce60c0..960ea116c9 100644
--- a/src/qml/doc/src/qmltypereference.qdoc
+++ b/src/qml/doc/src/qmltypereference.qdoc
@@ -26,7 +26,7 @@
****************************************************************************/
/*!
-\qmlmodule QtQml 2.2
+\qmlmodule QtQml 2.11
\title Qt QML QML Types
\ingroup qmlmodules
\brief List of QML types provided by the Qt QML module
@@ -43,11 +43,11 @@ The types provided by the \c QtQml module are only available in a QML document
if that document imports the \c QtQml namespace (or if the document imports the
\c QtQuick namespace, as noted below).
-The current version of the \c QtQml module is version 2.2, and thus it may be
+The current version of the \c QtQml module is version 2.11, and thus it may be
imported via the following statement:
\qml
-import QtQml 2.2
+import QtQml 2.11
\endqml
Most clients will never need to use the \c QtQml import, as all of the types
diff --git a/src/qml/doc/src/qtqml.qdoc b/src/qml/doc/src/qtqml.qdoc
index a9f8e2a960..b4bc9a0774 100644
--- a/src/qml/doc/src/qtqml.qdoc
+++ b/src/qml/doc/src/qtqml.qdoc
@@ -58,7 +58,7 @@ following directive:
The QML types in Qt QML are available through the \c QtQML import. To use the
types, add the following import statement to your .qml file:
\code
-import QtQml 2.0
+import QtQml 2.11
\endcode