diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-08-24 00:25:13 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-08-24 00:27:34 (GMT) |
commit | 35db70bf1c046f880861bbf4f48b8741ced405c4 (patch) | |
tree | be12bd794d3d9c6265bd17e123ab27766b295d2c /tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml | |
parent | 0d2e88f417275a85b4e22a274fa04bc80742382e (diff) | |
download | Qt-35db70bf1c046f880861bbf4f48b8741ced405c4.zip Qt-35db70bf1c046f880861bbf4f48b8741ced405c4.tar.gz Qt-35db70bf1c046f880861bbf4f48b8741ced405c4.tar.bz2 |
Fix PathView when setting an empty model that is later filled.
Task-number: QTBUG-13017
Reviewed-by: Martin Jones
Diffstat (limited to 'tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml b/tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml new file mode 100644 index 0000000..177c405 --- /dev/null +++ b/tests/auto/declarative/qdeclarativepathview/data/emptymodel.qml @@ -0,0 +1,5 @@ +import Qt 4.7 + +PathView { + model: emptyModel +} |