Fix up examples.
[qt:qt.git] / examples / declarative / modelviews / parallax / qml / parallax / Clock.qml
1 import QtQuick 1.1
2
3 Text {
4     Timer {
5         triggeredOnStart: true
6         onTriggered: parent.text = Qt.formatTime(new Date())
7         interval: 1000; running: visible; repeat: true;
8     }
9
10     font.pixelSize: 32
11     font.family: "sans-serif"
12     font.bold: true
13     color: "white"
14 }