summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmllistscriptclass.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-12-23 04:17:55 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-12-23 04:17:55 (GMT)
commit4fe8f2ab89ace6e617a81c5e8568c3830135da20 (patch)
tree900e99845dee1d8717d2a816133971ed3c5653c8 /src/declarative/qml/qmllistscriptclass.cpp
parentb95cf9eccc4a84036c7b5d1443e598d3db2f2d70 (diff)
downloadQt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.zip
Qt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.tar.gz
Qt-4fe8f2ab89ace6e617a81c5e8568c3830135da20.tar.bz2
Stop using QGuard
This should allow QGuard to be removed from Qt and QObjectPrivate::ExtraData. Having QmlGuard inside QmlDeclarativeData reduces the number of new's, and creating QmlDeclarativeData is faster than QObjectPrivate::ExtraData anyway.
Diffstat (limited to 'src/declarative/qml/qmllistscriptclass.cpp')
-rw-r--r--src/declarative/qml/qmllistscriptclass.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/qml/qmllistscriptclass.cpp b/src/declarative/qml/qmllistscriptclass.cpp
index d93498d..f5ff2c0 100644
--- a/src/declarative/qml/qmllistscriptclass.cpp
+++ b/src/declarative/qml/qmllistscriptclass.cpp
@@ -42,11 +42,12 @@
#include "qmllistscriptclass_p.h"
#include "qmlengine_p.h"
+#include "qmlguard_p.h"
QT_BEGIN_NAMESPACE
struct ListData : public QScriptDeclarativeClass::Object {
- QGuard<QObject> object;
+ QmlGuard<QObject> object;
int propertyIdx;
QmlListScriptClass::ListType type;
};