diff options
author | Lars Knoll <[email protected]> | 2017-01-05 13:39:38 +0100 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2017-01-25 08:31:17 +0000 |
commit | afc29a54791e70264f7c175b2da0a234f791f749 (patch) | |
tree | ea591cd4322c861e0aeb5cd5f5ae3fdfecb6cc66 /src/qml/jsruntime/qv4booleanobject_p.h | |
parent | cea4a039d713173d423c35fa56a6994a4ebefd2c (diff) |
Convert more builtin methods to the new calling convention
Change-Id: I2cd1df437d91918001beed8dfe92d553b3bb377f
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4booleanobject_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4booleanobject_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4booleanobject_p.h b/src/qml/jsruntime/qv4booleanobject_p.h index 4c2f3c09e7..9c8b1d67f1 100644 --- a/src/qml/jsruntime/qv4booleanobject_p.h +++ b/src/qml/jsruntime/qv4booleanobject_p.h @@ -78,8 +78,8 @@ struct BooleanPrototype: BooleanObject { void init(ExecutionEngine *engine, Object *ctor); - static ReturnedValue method_toString(CallContext *ctx); - static ReturnedValue method_valueOf(CallContext *ctx); + static void method_toString(const BuiltinFunction *, Scope &scope, CallData *callData); + static void method_valueOf(const BuiltinFunction *, Scope &scope, CallData *callData); }; |