aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_runtime.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-12-01 19:57:26 +0100
committerSimon Hausmann <simon.hausmann@digia.com>2012-12-02 15:54:40 +0100
commit751ceb0f8ff517e83c96d39a5d0b74132adb78aa (patch)
tree6cb5505b5161e74d122cb1de517cd2820be9c28f /qmljs_runtime.h
parent2a7408ae5a83334adab3d004ccbe83b18c49bf0d (diff)
Fix qmljs_call_property
Change-Id: Ic32fc8815704ed201a3b50eae05ff2705372210d Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'qmljs_runtime.h')
-rw-r--r--qmljs_runtime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmljs_runtime.h b/qmljs_runtime.h
index 2df8dd105c..d6a7839dce 100644
--- a/qmljs_runtime.h
+++ b/qmljs_runtime.h
@@ -92,7 +92,7 @@ extern "C" {
// context
Value __qmljs_call_activation_property(ExecutionContext *, String *name, Value *args, int argc);
-Value __qmljs_call_property(ExecutionContext *context, Value base, String *name, Value *args, int argc);
+Value __qmljs_call_property(ExecutionContext *context, Value thisObject, String *name, Value *args, int argc);
Value __qmljs_call_value(ExecutionContext *context, Value thisObject, Value func, Value *args, int argc);
Value __qmljs_construct_activation_property(ExecutionContext *, String *name, Value *args, int argc);