diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/qml/qml/qqmldata_p.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qml/qml/qqmldata_p.h b/src/qml/qml/qqmldata_p.h index 32fabcc365..e099f9815e 100644 --- a/src/qml/qml/qqmldata_p.h +++ b/src/qml/qml/qqmldata_p.h @@ -77,7 +77,7 @@ public: hasTaintedV8Object(false), isQueuedForDeletion(false), rootObjectInCreation(false), hasVMEMetaObject(false), parentFrozen(false), bindingBitsSize(0), bindingBits(0), notifyList(0), context(0), outerContext(0), bindings(0), signalHandlers(0), nextContextObject(0), prevContextObject(0), - lineNumber(0), columnNumber(0), compiledData(0), deferredData(0), jsEngineId(0), + lineNumber(0), columnNumber(0), jsEngineId(0), compiledData(0), deferredData(0), propertyCache(0), guards(0), extendedData(0) { init(); } @@ -169,6 +169,8 @@ public: quint16 lineNumber; quint16 columnNumber; + quint32 jsEngineId; // id of the engine that created the jsWrapper + struct DeferredData { unsigned int deferredIdx; QQmlCompiledData *compiledData;//Not always the same as the other compiledData @@ -177,7 +179,6 @@ public: QQmlCompiledData *compiledData; DeferredData *deferredData; - quint32 jsEngineId; // id of the engine that cerated the jsWrapper QV4::WeakValue jsWrapper; QQmlPropertyCache *propertyCache; |
