aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmljavascriptexpression_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-05-20 20:32:58 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-05-21 10:05:42 +0200
commit71e263abc4c5fe0941c931f6a38b394db75b1027 (patch)
tree56d63c011d2209fda0efb06fe6f04752ad44edb7 /src/qml/qml/qqmljavascriptexpression_p.h
parentb7d79a0c271c9541c96be4028ee76eb304e06bf5 (diff)
Fix return value for QQmlJavascriptExpression::evaluate
Change-Id: Idf95ee51b7d50682476371c7f49537930fdf96f1 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmljavascriptexpression_p.h')
-rw-r--r--src/qml/qml/qqmljavascriptexpression_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmljavascriptexpression_p.h b/src/qml/qml/qqmljavascriptexpression_p.h
index 9888812093..be14681569 100644
--- a/src/qml/qml/qqmljavascriptexpression_p.h
+++ b/src/qml/qml/qqmljavascriptexpression_p.h
@@ -109,9 +109,9 @@ public:
QQmlJavaScriptExpression(VTable *vtable);
- v8::Handle<v8::Value> evaluate(QQmlContextData *, const QV4::Value &function,
+ QV4::Value evaluate(QQmlContextData *, const QV4::Value &function,
bool *isUndefined);
- v8::Handle<v8::Value> evaluate(QQmlContextData *, const QV4::Value &function,
+ QV4::Value evaluate(QQmlContextData *, const QV4::Value &function,
int argc, QV4::Value *args,
bool *isUndefined);