aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4context_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4context_p.h')
-rw-r--r--src/qml/jsruntime/qv4context_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4context_p.h b/src/qml/jsruntime/qv4context_p.h
index 74530e7ae9..4f7cdd8105 100644
--- a/src/qml/jsruntime/qv4context_p.h
+++ b/src/qml/jsruntime/qv4context_p.h
@@ -127,10 +127,10 @@ struct Q_QML_EXPORT ExecutionContext : public Managed
engine->current = this;
}
- HeapObject *newCallContext(FunctionObject *f, CallData *callData);
- WithContext *newWithContext(Object *with);
- CatchContext *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue);
- CallContext *newQmlContext(FunctionObject *f, Object *qml);
+ Returned<ExecutionContext> *newCallContext(FunctionObject *f, CallData *callData);
+ Returned<WithContext> *newWithContext(Object *with);
+ Returned<CatchContext> *newCatchContext(String *exceptionVarName, const ValueRef exceptionValue);
+ Returned<CallContext> *newQmlContext(FunctionObject *f, Object *qml);
void createMutableBinding(String *name, bool deletable);