aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4jscall_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4jscall_p.h')
-rw-r--r--src/qml/jsruntime/qv4jscall_p.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/qml/jsruntime/qv4jscall_p.h b/src/qml/jsruntime/qv4jscall_p.h
index a71d14ad6c..ed75fb7475 100644
--- a/src/qml/jsruntime/qv4jscall_p.h
+++ b/src/qml/jsruntime/qv4jscall_p.h
@@ -74,13 +74,6 @@ struct JSCallData {
ptr->setArgc(argc);
ptr->function = *function;
}
- JSCallData(const Scope &scope, Heap::FunctionObject *function, int argc = 0)
- {
- int size = int(offsetof(QV4::CallData, args)/sizeof(QV4::Value)) + argc;
- ptr = reinterpret_cast<CallData *>(scope.alloc(size));
- ptr->setArgc(argc);
- ptr->function = function;
- }
JSCallData(const Scope &scope, Value *argv, int argc, Value *thisObject = 0)
{
int size = int(offsetof(QV4::CallData, args)/sizeof(QV4::Value)) + argc;
@@ -114,10 +107,6 @@ struct JSCallData {
return ptr;
}
- ReturnedValue call() const {
- return static_cast<FunctionObject &>(ptr->function).call(*this);
- }
-
CallData *ptr;
};