summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativerepeater/data/properties.qml
blob: 550ce8dba758fd8bf60175c73f3b49649e0d66e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
import Qt 4.6

Row { 
    Repeater { 
        objectName: "repeater"
        model: 5
        Text { 
            text: "I'm item " + index 
        } 
    }
}