aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4booleanobject_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-10-31 22:18:47 +0100
committerLars Knoll <lars.knoll@qt.io>2017-11-13 08:56:33 +0000
commit5c268e5b3a0af4e516e87cadc5904eeefafe4aa2 (patch)
tree7c2627d9f312178309b847e824699fbdfbec205a /src/qml/jsruntime/qv4booleanobject_p.h
parent0e5c17dda3ef037ad4625191f65918603f78c608 (diff)
Convert methods of BooleanObject to new calling convention
Change-Id: I8677025b26a77109d2c60601d25980c8d065b21c Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4booleanobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4booleanobject_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jsruntime/qv4booleanobject_p.h b/src/qml/jsruntime/qv4booleanobject_p.h
index 7a686e0d53..3cf09b2667 100644
--- a/src/qml/jsruntime/qv4booleanobject_p.h
+++ b/src/qml/jsruntime/qv4booleanobject_p.h
@@ -79,8 +79,8 @@ struct BooleanPrototype: BooleanObject
V4_PROTOTYPE(objectPrototype)
void init(ExecutionEngine *engine, Object *ctor);
- static ReturnedValue method_toString(const BuiltinFunction *, CallData *callData);
- static ReturnedValue method_valueOf(const BuiltinFunction *, CallData *callData);
+ static ReturnedValue method_toString(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+ static ReturnedValue method_valueOf(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
};