aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/threading/threadedlistmodel/timedisplay.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-04-23 14:39:48 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-26 04:53:08 +0200
commita5336a0577b715edf49bef3794c6b1a8fa225a73 (patch)
treea7cc3ad59d7af572e1582aa9f8eb9546697a7e6c /examples/quick/threading/threadedlistmodel/timedisplay.qml
parent5e62f313588dc81c7284c4eb451cb9ebe7f3c994 (diff)
More example docs
MouseArea, Threading and TouchInteraction Change-Id: I9ca812d20a6c87d68ef91066ae0a4b9bc8829478 Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
Diffstat (limited to 'examples/quick/threading/threadedlistmodel/timedisplay.qml')
-rw-r--r--examples/quick/threading/threadedlistmodel/timedisplay.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/threading/threadedlistmodel/timedisplay.qml b/examples/quick/threading/threadedlistmodel/timedisplay.qml
index 48d0f659e5..266534a57c 100644
--- a/examples/quick/threading/threadedlistmodel/timedisplay.qml
+++ b/examples/quick/threading/threadedlistmodel/timedisplay.qml
@@ -38,7 +38,6 @@
**
****************************************************************************/
-// ![0]
import QtQuick 2.0
Rectangle {
@@ -60,6 +59,7 @@ Rectangle {
source: "dataloader.js"
}
+// ![0]
Timer {
id: timer
interval: 2000; repeat: true
@@ -71,6 +71,6 @@ Rectangle {
worker.sendMessage(msg);
}
}
+// ![0]
}
}
-// ![0]