aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsapi
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsapi')
-rw-r--r--src/qml/jsapi/qjsvalue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsapi/qjsvalue.cpp b/src/qml/jsapi/qjsvalue.cpp
index 2640ea5d1c..f18814cedf 100644
--- a/src/qml/jsapi/qjsvalue.cpp
+++ b/src/qml/jsapi/qjsvalue.cpp
@@ -743,7 +743,7 @@ QJSValue& QJSValue::operator=(const QJSValue& other)
*/
bool QJSValue::equals(const QJSValue& other) const
{
- return __qmljs_cmp_eq(d->value, other.d->value);
+ return __qmljs_cmp_eq(QV4::ValueRef(d), QV4::ValueRef(other.d));
}
/*!
@@ -770,7 +770,7 @@ bool QJSValue::equals(const QJSValue& other) const
*/
bool QJSValue::strictlyEquals(const QJSValue& other) const
{
- return __qmljs_strict_equal(d->value, other.d->value);
+ return __qmljs_strict_equal(QV4::ValueRef(d), QV4::ValueRef(other.d));
}
/*!