aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlbinding.cpp
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2020-06-03 18:09:51 +0200
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2020-06-07 18:11:16 +0200
commitc8dd51333f14941d9a5c2d3798768df342aa48d4 (patch)
treeaab12d3d467f61eab1db59f77341be5c7b44cb89 /src/qml/qml/qqmlbinding.cpp
parent5ebbdc747f624dad57b3ef8ee66d19e69cdfb158 (diff)
Fix a tracepoint
Variable got renamed without updating the tracepoint. Change-Id: Ide61d86c479491c3a6d4ad4acbcb54bec32a17d2 Reviewed-by: Milian Wolff <milian.wolff@kdab.com>
Diffstat (limited to 'src/qml/qml/qqmlbinding.cpp')
-rw-r--r--src/qml/qml/qqmlbinding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmlbinding.cpp b/src/qml/qml/qqmlbinding.cpp
index 7de94fe3d5..19d7a4f736 100644
--- a/src/qml/qml/qqmlbinding.cpp
+++ b/src/qml/qml/qqmlbinding.cpp
@@ -186,7 +186,7 @@ void QQmlBinding::update(QQmlPropertyData::WriteFlags flags)
if (canUseAccessor())
flags.setFlag(QQmlPropertyData::BypassInterceptor);
- Q_TRACE_SCOPE(QQmlBinding, engine, function() ? function()->name()->toQString() : QString(),
+ Q_TRACE_SCOPE(QQmlBinding, qmlEngine, function() ? function()->name()->toQString() : QString(),
sourceLocation().sourceFile, sourceLocation().line, sourceLocation().column);
QQmlBindingProfiler prof(QQmlEnginePrivate::get(qmlEngine)->profiler, function());
doUpdate(watcher, flags, scope);