diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 03:06:22 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-23 03:06:22 (GMT) |
commit | 23316b14f28eb1b135b6e8e90fa6fdb34dc39b59 (patch) | |
tree | 3a8d1b576c7b5b191b37ec6457aa97a243827aad /src/declarative/qml | |
parent | c151647c01dd8034ee77a00520430cfb516a6a38 (diff) | |
download | Qt-23316b14f28eb1b135b6e8e90fa6fdb34dc39b59.zip Qt-23316b14f28eb1b135b6e8e90fa6fdb34dc39b59.tar.gz Qt-23316b14f28eb1b135b6e8e90fa6fdb34dc39b59.tar.bz2 |
Fix but in QmlMetaProperty assignment operator
QTBUG-8166
Diffstat (limited to 'src/declarative/qml')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlmetaproperty.cpp b/src/declarative/qml/qmlmetaproperty.cpp index 332d126..1742c43 100644 --- a/src/declarative/qml/qmlmetaproperty.cpp +++ b/src/declarative/qml/qmlmetaproperty.cpp @@ -378,7 +378,9 @@ QmlMetaProperty &QmlMetaProperty::operator=(const QmlMetaProperty &other) d->object = other.d->object; d->isDefaultProperty = other.d->isDefaultProperty; + d->isNameCached = other.d->isNameCached; d->core = other.d->core; + d->nameCache = other.d->nameCache; d->valueType = other.d->valueType; |