diff options
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4context_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h index fe05774078..10a86dd898 100644 --- a/src/qml/jsruntime/qv4context_p.h +++ b/src/qml/jsruntime/qv4context_p.h @@ -152,9 +152,9 @@ struct Q_QML_EXPORT ExecutionContext : public Managed } HeapObject *newCallContext(FunctionObject *f, CallData *callData); - HeapObject *newWithContext(Object *with); - HeapObject *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue); - HeapObject *newQmlContext(FunctionObject *f, Object *qml); + WithContext *newWithContext(Object *with); + CatchContext *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue); + CallContext *newQmlContext(FunctionObject *f, Object *qml); void createMutableBinding(String *name, bool deletable); |