aboutsummaryrefslogtreecommitdiffstats
path: root/src/v4/qv4regexpobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/v4/qv4regexpobject.h')
-rw-r--r--src/v4/qv4regexpobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/v4/qv4regexpobject.h b/src/v4/qv4regexpobject.h
index d83e686243..d9dc624f52 100644
--- a/src/v4/qv4regexpobject.h
+++ b/src/v4/qv4regexpobject.h
@@ -94,10 +94,10 @@ struct RegExpPrototype: RegExpObject
RegExpPrototype(ExecutionEngine* engine): RegExpObject(engine, RegExp::create(engine, QString()), false) {}
void init(ExecutionContext *ctx, const Value &ctor);
- static Value method_exec(ExecutionContext *ctx);
- static Value method_test(ExecutionContext *ctx);
- static Value method_toString(ExecutionContext *ctx);
- static Value method_compile(ExecutionContext *ctx);
+ static Value method_exec(CallContext *ctx);
+ static Value method_test(CallContext *ctx);
+ static Value method_toString(CallContext *ctx);
+ static Value method_compile(CallContext *ctx);
};
} // namespace VM