aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4runtime_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4runtime_p.h')
-rw-r--r--src/qml/jsruntime/qv4runtime_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4runtime_p.h b/src/qml/jsruntime/qv4runtime_p.h
index 2d29c89056..4b15c1a17d 100644
--- a/src/qml/jsruntime/qv4runtime_p.h
+++ b/src/qml/jsruntime/qv4runtime_p.h
@@ -596,7 +596,7 @@ inline QV4::Bool __qmljs_cmp_instanceof(QV4::ExecutionContext *ctx, const QV4::V
{
TRACE2(left, right);
- ValueScope scope(ctx);
+ Scope scope(ctx);
QV4::ScopedValue v(scope, __qmljs_instanceof(ctx, left, right));
return v->booleanValue();
}
@@ -605,7 +605,7 @@ inline uint __qmljs_cmp_in(QV4::ExecutionContext *ctx, const QV4::ValueRef left,
{
TRACE2(left, right);
- ValueScope scope(ctx);
+ Scope scope(ctx);
QV4::ScopedValue v(scope, __qmljs_in(ctx, left, right));
return v->booleanValue();
}