aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4regexpobject_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject_p.h')
-rw-r--r--src/qml/jsruntime/qv4regexpobject_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h
index 70bc9476e0..0129f8d396 100644
--- a/src/qml/jsruntime/qv4regexpobject_p.h
+++ b/src/qml/jsruntime/qv4regexpobject_p.h
@@ -115,10 +115,10 @@ struct RegExpPrototype: RegExpObject
RegExpPrototype(InternalClass *ic): RegExpObject(ic) {}
void init(ExecutionEngine *engine, ObjectRef ctor);
- static ReturnedValue method_exec(SimpleCallContext *ctx);
- static ReturnedValue method_test(SimpleCallContext *ctx);
- static ReturnedValue method_toString(SimpleCallContext *ctx);
- static ReturnedValue method_compile(SimpleCallContext *ctx);
+ static ReturnedValue method_exec(CallContext *ctx);
+ static ReturnedValue method_test(CallContext *ctx);
+ static ReturnedValue method_toString(CallContext *ctx);
+ static ReturnedValue method_compile(CallContext *ctx);
};
}