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

Item {

    property string name: "Bob Smith"

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