summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcontext.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-01-05 03:40:16 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-01-05 03:40:16 (GMT)
commit186a38c683cbec6a2a141245d5e428d85c073b8f (patch)
tree1bd2f2d52a832c342a4ed6dcf1a878cef95b8958 /src/declarative/qml/qmlcontext.cpp
parent56d5cac2f2bbee9e4e1ee6ac6ac9670926bb329f (diff)
downloadQt-186a38c683cbec6a2a141245d5e428d85c073b8f.zip
Qt-186a38c683cbec6a2a141245d5e428d85c073b8f.tar.gz
Qt-186a38c683cbec6a2a141245d5e428d85c073b8f.tar.bz2
Mark function contexts as temporary
QTBUG-5690
Diffstat (limited to 'src/declarative/qml/qmlcontext.cpp')
-rw-r--r--src/declarative/qml/qmlcontext.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlcontext.cpp b/src/declarative/qml/qmlcontext.cpp
index 4467cce..e063981 100644
--- a/src/declarative/qml/qmlcontext.cpp
+++ b/src/declarative/qml/qmlcontext.cpp
@@ -57,8 +57,8 @@
QT_BEGIN_NAMESPACE
QmlContextPrivate::QmlContextPrivate()
-: parent(0), engine(0), isInternal(false), propertyNames(0), notifyIndex(-1),
- highPriorityCount(0), imports(0), expressions(0), contextObjects(0),
+: parent(0), engine(0), isInternal(false), isTemporary(false), propertyNames(0),
+ notifyIndex(-1), highPriorityCount(0), imports(0), expressions(0), contextObjects(0),
idValues(0), idValueCount(0), optimizedBindings(0)
{
}