aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/threading/threadedlistmodel/timedisplay.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/threading/threadedlistmodel/timedisplay.qml')
-rw-r--r--examples/quick/threading/threadedlistmodel/timedisplay.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/quick/threading/threadedlistmodel/timedisplay.qml b/examples/quick/threading/threadedlistmodel/timedisplay.qml
index 5ad901c676..c4e6e7b249 100644
--- a/examples/quick/threading/threadedlistmodel/timedisplay.qml
+++ b/examples/quick/threading/threadedlistmodel/timedisplay.qml
@@ -59,7 +59,10 @@ Rectangle {
anchors.fill: parent
model: listModel
delegate: Component {
- Text { text: time }
+ Text {
+ required property string time
+ text: time
+ }
}
ListModel { id: listModel }