aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4errorobject.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-05-12 10:16:51 +0200
committerLars Knoll <lars.knoll@qt.io>2017-05-19 06:23:13 +0000
commit931239579d60eff13ef4f7674cc10f27d7bbdf71 (patch)
treec13894363c4d2dd2632437cb5ec117591ebd64c4 /src/qml/jsruntime/qv4errorobject.cpp
parentc83685bf3ae1c85cf204e0cbf7fc9b5db819a0f5 (diff)
Move the list of default internal classes into EngineBase
And store them in an enumerated array. This will simplify upcoming changes. Change-Id: I82eac03b9f6264843ae625e36e150464fe08be9d Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4errorobject.cpp')
-rw-r--r--src/qml/jsruntime/qv4errorobject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4errorobject.cpp b/src/qml/jsruntime/qv4errorobject.cpp
index f290bc5136..63b778b56d 100644
--- a/src/qml/jsruntime/qv4errorobject.cpp
+++ b/src/qml/jsruntime/qv4errorobject.cpp
@@ -75,7 +75,7 @@ void Heap::ErrorObject::init()
Scope scope(internalClass->engine);
Scoped<QV4::ErrorObject> e(scope, this);
- if (internalClass == scope.engine->errorProtoClass)
+ if (internalClass == scope.engine->internalClasses[EngineBase::Class_ErrorProto])
return;
*propertyData(QV4::ErrorObject::Index_Stack) = scope.engine->getStackFunction();