Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / selftest_noimages / selftest_noimages.qml
1 import QtQuick 1.0
2 Text {
3     property string error: "not pressed"
4     text: (new Date()).valueOf()
5     MouseArea {
6         anchors.fill: parent
7         onPressed: error=""
8     }
9 }