diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-12-18 03:37:26 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-12-18 03:37:26 (GMT) |
commit | 30b1c6d50f6f6ed1c77e03adb9f0c12cd3f94670 (patch) | |
tree | a73e7fc52593ed993993fecacb3d67e3a59ee920 /src/declarative/qml/qmlcompiler.cpp | |
parent | 32bcf89a330d422b0b99ac9090b104016418d07f (diff) | |
download | Qt-30b1c6d50f6f6ed1c77e03adb9f0c12cd3f94670.zip Qt-30b1c6d50f6f6ed1c77e03adb9f0c12cd3f94670.tar.gz Qt-30b1c6d50f6f6ed1c77e03adb9f0c12cd3f94670.tar.bz2 |
Remove QML_ENABLE_DEFERRED env variable
Use QML_EXPERIMENTAL instead
Diffstat (limited to 'src/declarative/qml/qmlcompiler.cpp')
-rw-r--r-- | src/declarative/qml/qmlcompiler.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcompiler.cpp b/src/declarative/qml/qmlcompiler.cpp index 6ecb647..3ebefea 100644 --- a/src/declarative/qml/qmlcompiler.cpp +++ b/src/declarative/qml/qmlcompiler.cpp @@ -83,7 +83,6 @@ QT_BEGIN_NAMESPACE DEFINE_BOOL_CONFIG_OPTION(compilerDump, QML_COMPILER_DUMP); DEFINE_BOOL_CONFIG_OPTION(compilerStatDump, QML_COMPILER_STATISTICS_DUMP); DEFINE_BOOL_CONFIG_OPTION(qmlExperimental, QML_EXPERIMENTAL); -DEFINE_BOOL_CONFIG_OPTION(qmlEnableDeferred, QML_ENABLE_DEFERRED); using namespace QmlParser; @@ -2768,7 +2767,7 @@ QmlType *QmlCompiler::toQmlType(QmlParser::Object *from) QStringList QmlCompiler::deferredProperties(QmlParser::Object *obj) { - if (!qmlEnableDeferred()) + if (!qmlExperimental()) return QStringList(); const QMetaObject *mo = obj->metatype; |