diff options
Diffstat (limited to 'tests/benchmarks/declarative/qmltime/example.qml')
-rw-r--r-- | tests/benchmarks/declarative/qmltime/example.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/benchmarks/declarative/qmltime/example.qml b/tests/benchmarks/declarative/qmltime/example.qml new file mode 100644 index 0000000..68889f0 --- /dev/null +++ b/tests/benchmarks/declarative/qmltime/example.qml @@ -0,0 +1,14 @@ +import Qt 4.6 +import QmlTime 1.0 as QmlTime + +Item { + + property string name: "Bob Smith" + + QmlTime.Timer { + component: Item { + Text { text: name } + } + } +} + |