aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltypewrapper.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-05-31 13:05:37 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2013-05-31 15:46:27 +0200
commite14b9dbee1260f799d1d2e175d106dbed79b6c49 (patch)
tree127bd9fb574a5d62155e93ead4fdcffc3314e664 /src/qml/qml/qqmltypewrapper.cpp
parent0ced7dfd6991cd33222e7c5a3c05e56d2c67e9d5 (diff)
Start converting casting of Managed to subtypes to a better scheme
There is now a template based as<Foo>() method available in Managed, that'll allow casting to the proper subclass. It uses the pointer to the vtable and compares it to the classes static vtable for type checking. Like this we can avoid that Managed has to know about all subclasses. Change-Id: Ic966bbe00d85224b8d96cc0ff00f69a6ac67129e Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/qml/qqmltypewrapper.cpp')
-rw-r--r--src/qml/qml/qqmltypewrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmltypewrapper.cpp b/src/qml/qml/qqmltypewrapper.cpp
index cdc9265004..1c2fd1f479 100644
--- a/src/qml/qml/qqmltypewrapper.cpp
+++ b/src/qml/qml/qqmltypewrapper.cpp
@@ -117,7 +117,7 @@ Value QmlTypeWrapper::create(QV8Engine *v8, QObject *o, QQmlTypeNameCache *t, co
Value QmlTypeWrapper::get(Managed *m, ExecutionContext *ctx, String *name, bool *hasProperty)
{
- QmlTypeWrapper *w = m->asQmlTypeWrapper();
+ QmlTypeWrapper *w = m->as<QmlTypeWrapper>();
if (!w)
ctx->throwTypeError();
@@ -229,7 +229,7 @@ Value QmlTypeWrapper::get(Managed *m, ExecutionContext *ctx, String *name, bool
void QmlTypeWrapper::put(Managed *m, ExecutionContext *ctx, String *name, const Value &value)
{
- QmlTypeWrapper *w = m->asQmlTypeWrapper();
+ QmlTypeWrapper *w = m->as<QmlTypeWrapper>();
if (!w)
ctx->throwTypeError();