aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4sequenceobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4sequenceobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4sequenceobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4sequenceobject.cpp b/src/qml/jsruntime/qv4sequenceobject.cpp
index 4dd71fe582..78cd7529d8 100644
--- a/src/qml/jsruntime/qv4sequenceobject.cpp
+++ b/src/qml/jsruntime/qv4sequenceobject.cpp
@@ -423,7 +423,7 @@ public:
JSCallData jsCallData(scope, 2);
jsCallData->args[0] = convertElementToValue(m_v4, lhs);
jsCallData->args[1] = convertElementToValue(m_v4, rhs);
- jsCallData->thisObject = m_v4->globalObject;
+ *jsCallData->thisObject = m_v4->globalObject;
QV4::ScopedValue result(scope, compare->call(jsCallData));
return result->toNumber() < 0;
}