diff options
author | Bea Lam <bea.lam@nokia.com> | 2011-04-08 04:20:17 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2011-04-12 01:07:48 (GMT) |
commit | 6ec7695eaa02c923b90d72e3918b9ab50da63e41 (patch) | |
tree | 79730f4d1e6ef69f5ccaf87b14d9bc9ee38d40cb /src/declarative/util | |
parent | 051a76c1d65d698f71dc75c89f91ae9021357eae (diff) | |
download | Qt-6ec7695eaa02c923b90d72e3918b9ab50da63e41.zip Qt-6ec7695eaa02c923b90d72e3918b9ab50da63e41.tar.gz Qt-6ec7695eaa02c923b90d72e3918b9ab50da63e41.tar.bz2 |
ListModel::clear() should not clear roles
Clearing a model and then appending a new object with a subset of the
previous roles was causing a crash since ListModel cleared the roles
and VisualDataModel did not, so VisualDataModel was requesting invalid
roles. This could have been fixed by clearing the meta object and
its property cache in in VisualDataModel but this is less efficient,
and also the general use case is for model data to always have the same
roles.
Task-number: QTBUG-18587
Change-Id: Ib11d2292888ab7a41e772b1e11700cd665e94ae7
Reviewed-by: Michael Brasser
Diffstat (limited to 'src/declarative/util')
-rw-r--r-- | src/declarative/util/qdeclarativelistmodel.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/util/qdeclarativelistmodel.cpp b/src/declarative/util/qdeclarativelistmodel.cpp index 9332de4..1d03842 100644 --- a/src/declarative/util/qdeclarativelistmodel.cpp +++ b/src/declarative/util/qdeclarativelistmodel.cpp @@ -1301,9 +1301,6 @@ int NestedListModel::count() const void NestedListModel::clear() { - _rolesOk = false; - roleStrings.clear(); - if (_root) _root->clear(); } |