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

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