diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-16 03:10:45 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-06-16 03:10:45 (GMT) |
commit | a6b7a8a5fb49acc957599111be222769e6b34521 (patch) | |
tree | 39f4db706777bcba5c624ac86e613578e197647b /src/declarative/qml/qmlvme.cpp | |
parent | ce28ad22e2e8d7dadea55f89e9ef93f2528d1098 (diff) | |
download | Qt-a6b7a8a5fb49acc957599111be222769e6b34521.zip Qt-a6b7a8a5fb49acc957599111be222769e6b34521.tar.gz Qt-a6b7a8a5fb49acc957599111be222769e6b34521.tar.bz2 |
Fix autotest crash
Diffstat (limited to 'src/declarative/qml/qmlvme.cpp')
-rw-r--r-- | src/declarative/qml/qmlvme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlvme.cpp b/src/declarative/qml/qmlvme.cpp index 58972ef..e65b206 100644 --- a/src/declarative/qml/qmlvme.cpp +++ b/src/declarative/qml/qmlvme.cpp @@ -94,9 +94,9 @@ struct ListInstance : list(l), type(t), qmlListInterface(0) {} */ ListInstance(QList<void *> *q, int t) - : type(t), qListInterface(q) {} + : type(t), qListInterface(q), qmlListInterface(0) {} ListInstance(QmlPrivate::ListInterface *q, int t) - : type(t), qmlListInterface(q) {} + : type(t), qListInterface(0), qmlListInterface(q) {} //QVariant list; int type; |