aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml
diff options
context:
space:
mode:
authorFabian Kosmale <fabian.kosmale@qt.io>2020-11-19 10:18:31 +0100
committerFabian Kosmale <fabian.kosmale@qt.io>2020-11-19 13:21:29 +0100
commitf18297eeea4f6eda862b45a31f80d3924ef7456e (patch)
tree59b4ae96e22aa16f85976d914080c45d7eb8f350 /src/qml
parent8d58c809a1d4448cb8635a5291e978bf16963413 (diff)
Porting guide: mention qmlDebug/Info/Warning
Also don't mention qmlExecuteDeferred: That one is internal anyway (albeit not explicitly marked as such yet). Change-Id: Icef5fb4092b6a109613ae1f2e90fcff93d7c0b4b Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/qml')
-rw-r--r--src/qml/doc/src/qt6-changes.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/doc/src/qt6-changes.qdoc b/src/qml/doc/src/qt6-changes.qdoc
index 1e958479f6..ee9525ae5c 100644
--- a/src/qml/doc/src/qt6-changes.qdoc
+++ b/src/qml/doc/src/qt6-changes.qdoc
@@ -107,9 +107,9 @@
QQmlListProperty<QObject>(owner, &owner->objectList);
\endcode
- \li The functions \c qmlExecuteDeferred, \c qmlContext and \c qmlEngine used to exist both in
- the global namespace (or Qt namespace in namespaced builds), and in the \c QtQml namespace. The
- latter has been removed.
+ \li The functions \c qmlDebug, \c qmlInfo, \c qmlWarning, \c qmlContext and \c qmlEngine used
+ to exist both in the global namespace (or Qt namespace in namespaced builds), and in the \c
+ QtQml namespace. These functions now exist only in the global namespace.
\oldcode
QQmlEngine *engine = QtQml::qmlEngine(qmlObject);
\newcode