Details
-
Bug
-
Resolution: Done
-
P2: Important
-
3.x
-
None
Description
This works:
ListModel { ListElement { Item { } } }
It should not. Covered in tst_qmllistmodel.
Worse, this reports no error:
ListModel { Repeater { model: 10 ListElement { text: "blah" + index } } ListElement { text: "That's another element" } Repeater { model: 5 ListElement { text: "foobar" + index } } }