aboutsummaryrefslogtreecommitdiffstats
path: root/qmljs_engine.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-12-04 13:46:48 -0800
committerSimon Hausmann <simon.hausmann@digia.com>2012-12-05 01:04:21 +0100
commit46953ed4d0a03d07c7d1c0e4aeeb5b0258909097 (patch)
treed5e6ffc0ffa8592d1c3a06a66814c7f5f14b5a28 /qmljs_engine.h
parentb725f76711e8350b3d52921c851e693145b7251c (diff)
Get rid of the ActivationObject
Also implement __qmljs_xxx_activation_property in a more correct way. Change-Id: I60c330bccca21fad99930987ed78153114a80c7d Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'qmljs_engine.h')
-rw-r--r--qmljs_engine.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/qmljs_engine.h b/qmljs_engine.h
index 2b053fd0f2..2837adb882 100644
--- a/qmljs_engine.h
+++ b/qmljs_engine.h
@@ -65,7 +65,6 @@ struct DateObject;
struct FunctionObject;
struct RegExpObject;
struct ErrorObject;
-struct ActivationObject;
struct ArgumentsObject;
struct ExecutionContext;
struct ExecutionEngine;
@@ -190,7 +189,7 @@ struct ExecutionEngine
Object *newTypeErrorObject(ExecutionContext *ctx, const QString &message);
Object *newMathObject(ExecutionContext *ctx);
- Object *newActivationObject(ExecutionContext *ctx);
+ Object *newActivationObject();
Object *newForEachIteratorObject(Object *o);
};