aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertybinding.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-11-19 10:01:25 +0100
committerUlf Hermann <ulf.hermann@qt.io>2020-11-19 09:15:08 +0000
commit31afb6b70513cc673d17fc72f081f19ac80e7111 (patch)
tree6c6e219008b10970a63a93aa18f08baa6f3c6d60 /src/qml/qml/qqmlpropertybinding.cpp
parentcb3cfdf661483ada83a2189b220ad893d5acf223 (diff)
Remove compatibility shim from qmlinfo.{cpp|h}
We don't need to handle symbol clashes with QtQuick1 anymore. [ChangeLog][QtQml] The functions qmlDebug, qmlInfo, and qmlWarning are no longer available in the QtQml namespace. Use their counterparts in the global namespace. Fixes: QTBUG-88637 Change-Id: Ia74510bd711790cebf55de4cd668891712f6835e Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/qml/qqmlpropertybinding.cpp')
-rw-r--r--src/qml/qml/qqmlpropertybinding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlpropertybinding.cpp b/src/qml/qml/qqmlpropertybinding.cpp
index d56d41f834..656e2788c4 100644
--- a/src/qml/qml/qqmlpropertybinding.cpp
+++ b/src/qml/qml/qqmlpropertybinding.cpp
@@ -82,7 +82,7 @@ void QQmlPropertyBinding::expressionChanged()
err.setLine(location.line);
err.setColumn(location.column);
err.setDescription(QString::fromLatin1("Binding loop detected"));
- QtQml::qmlWarning(this->scopeObject(), err);
+ qmlWarning(this->scopeObject(), err);
return;
}
m_error.setTag(currentTag | InEvaluationLoop);