summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listmodel-threaded/timedisplay.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/listmodel-threaded/timedisplay.qml')
-rw-r--r--examples/declarative/listmodel-threaded/timedisplay.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/declarative/listmodel-threaded/timedisplay.qml b/examples/declarative/listmodel-threaded/timedisplay.qml
index 848192e..80ac9fa 100644
--- a/examples/declarative/listmodel-threaded/timedisplay.qml
+++ b/examples/declarative/listmodel-threaded/timedisplay.qml
@@ -22,7 +22,9 @@ ListView {
Timer {
id: timer
- interval: 2000; repeat: true; running: true; triggeredOnStart: true
+ interval: 2000; repeat: true
+ running: true
+ triggeredOnStart: true
onTriggered: {
var msg = {'action': 'appendCurrentTime', 'model': listModel};