summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/qmltime/example.qml
blob: dde0671ea7fd04dbbc6ed1fe8daf45ccf1c9743f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7
import QmlTime 1.0 as QmlTime

Item {

    property string name: "Bob Smith"

    QmlTime.Timer {
        component: Item {
            Text { text: name }
        }
    }
}