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

Item {

    property string name: "Bob Smith"

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