aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4qobjectwrapper_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2015-09-09 14:36:07 +0200
committerLars Knoll <lars.knoll@theqtcompany.com>2015-09-25 08:39:52 +0000
commitf4ccd465691ea7f120d9f05424e0085361ce86e9 (patch)
treea413a7f677a43ae44b52172847e5a7849d33f1fd /src/qml/jsruntime/qv4qobjectwrapper_p.h
parentc47dacde0ba4a97f5eed9dc345f8c1450000082f (diff)
Smaller cleanups
Change-Id: I68f7ea476cb00a571908b7ec0a036f8517b091d5 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/qml/jsruntime/qv4qobjectwrapper_p.h')
-rw-r--r--src/qml/jsruntime/qv4qobjectwrapper_p.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4qobjectwrapper_p.h b/src/qml/jsruntime/qv4qobjectwrapper_p.h
index bf591dc9b1..b035e478f9 100644
--- a/src/qml/jsruntime/qv4qobjectwrapper_p.h
+++ b/src/qml/jsruntime/qv4qobjectwrapper_p.h
@@ -69,6 +69,8 @@ struct QObjectSlotDispatcher;
namespace Heap {
+struct QQmlValueTypeWrapper;
+
struct QObjectWrapper : Object {
QObjectWrapper(QObject *object);
QPointer<QObject> object;
@@ -80,7 +82,7 @@ struct QObjectMethod : FunctionObject {
QQmlRefPointer<QQmlPropertyCache> propertyCache;
int index;
- Value valueTypeWrapper;
+ Pointer<QQmlValueTypeWrapper> valueTypeWrapper;
const QMetaObject *metaObject();
};