diff options
author | Lars Knoll <[email protected]> | 2014-11-13 12:14:09 +0100 |
---|---|---|
committer | Simon Hausmann <[email protected]> | 2014-11-21 16:36:24 +0100 |
commit | b943d80dd90dec1a8b7802b826ad89e924cead05 (patch) | |
tree | a7edf71a76757a6dcb623e4929419a57a58a5523 /src/qml/jsruntime/qv4regexpobject_p.h | |
parent | cf7bd35a93f220cb1348f7654df9c6f27b590790 (diff) |
Remove the executioncontext in a few more places where it's not needed
Change-Id: I4c92c7bc9d94d8265e306f45d863fdc080a5e2a6
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jsruntime/qv4regexpobject_p.h')
-rw-r--r-- | src/qml/jsruntime/qv4regexpobject_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4regexpobject_p.h b/src/qml/jsruntime/qv4regexpobject_p.h index a6a5587ca5..cd1cf4f578 100644 --- a/src/qml/jsruntime/qv4regexpobject_p.h +++ b/src/qml/jsruntime/qv4regexpobject_p.h @@ -103,7 +103,7 @@ struct RegExpObject: Object { void init(ExecutionEngine *engine); - Property *lastIndexProperty(ExecutionContext *ctx); + Property *lastIndexProperty(); QRegExp toQRegExp() const; QString toString() const; QString source() const; |