aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Wicking <paul.wicking@qt.io>2023-06-21 07:07:23 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-06-25 17:55:33 +0000
commit8cd3364039a78395555ee522f8ad82ef30ccecd7 (patch)
treecdf75923bad77dc0106930f61bc48e02b8add851
parenta782eb71f659a8f6fdd825cc69482ce4cd7612f3 (diff)
Doc: Remove mention of module version requirement6.4
Fixes: QTBUG-114715 Change-Id: I7b5821820ba582fb21eaa56e3cf102fc3d61be00 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> (cherry picked from commit 9c33258ff56f4028a62c13fda866452bdb9caf38) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc b/src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc
index fff697dd8e..93461f1ed7 100644
--- a/src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc
+++ b/src/qml/doc/src/qmllanguageref/modules/identifiedmodules.qdoc
@@ -153,7 +153,6 @@ An identified module has several restrictions upon it:
\li the module must register its types into the module identifier type
namespace
\li the module may not register types into any other module's namespace
-\li clients must specify a version when importing the module
\endlist
For example, if an identified module is installed into
@@ -170,10 +169,9 @@ module com.example.CustomUi
\endcode
Clients will then be able to import the above module with the following import
-statement (assuming that the module registers types into version 1.0 of its
-namespace):
+statement:
\qml
-import com.example.CustomUi 1.0
+import com.example.CustomUi
\endqml
*/