aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/sequenceToIterable.qml
blob: 23e2645128ac9a637221ff56131b3f28bb71488c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pragma Strict
import QtQuick
import TestTypes

Item {
    Component.onCompleted: () => {
        repeater.model = EntrySource.getEntries()
    }

    Repeater {
        id: repeater
        Item {
            required property int index
            required property QtObject modelData
            objectName: modelData + ": " + index
        }
    }

    property int c: children.length
}