aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4function.cpp')
-rw-r--r--src/qml/jsruntime/qv4function.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4function.cpp b/src/qml/jsruntime/qv4function.cpp
index 5e3860a660..941c37de5b 100644
--- a/src/qml/jsruntime/qv4function.cpp
+++ b/src/qml/jsruntime/qv4function.cpp
@@ -58,9 +58,9 @@ ReturnedValue Function::call(const Value *thisObject, const Value *argv, int arg
ExecutionEngine *engine = context->engine();
CppStackFrame frame;
frame.init(engine, this, argv, argc);
- frame.setupJSFrame(engine->jsStackTop, Primitive::undefinedValue(), context->d(),
- thisObject ? *thisObject : Primitive::undefinedValue(),
- Primitive::undefinedValue());
+ frame.setupJSFrame(engine->jsStackTop, Value::undefinedValue(), context->d(),
+ thisObject ? *thisObject : Value::undefinedValue(),
+ Value::undefinedValue());
frame.push();
engine->jsStackTop += frame.requiredJSStackFrameSize();