summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview/dummydata/ContactModel.qml
blob: 683230821bdb9bdb623a52374f847e316911b24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.6

ListModel {
    id: contactModel
    ListElement {
        name: "Bill Smith"
        number: "555 3264"
    }
    ListElement {
        name: "John Brown"
        number: "555 8426"
    }
    ListElement {
        name: "Sam Wise"
        number: "555 0473"
    }
}