summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativerepeater/data/properties.qml
blob: 8c9f88ea710fe491c1bceba7b50c1d01913382d2 (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 
        } 
    }
}