summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompiler.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-12-18 03:37:26 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-12-18 03:37:26 (GMT)
commit30b1c6d50f6f6ed1c77e03adb9f0c12cd3f94670 (patch)
treea73e7fc52593ed993993fecacb3d67e3a59ee920 /src/declarative/qml/qmlcompiler.cpp
parent32bcf89a330d422b0b99ac9090b104016418d07f (diff)
downloadQt-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.cpp3
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;