summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml
blob: 3ef2a663e44b15156ded52c5efb11adfaa1f7ce9 (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.0
Text {
    property string error: "not pressed"
    text: (new Date()).valueOf()
    MouseArea {
        anchors.fill: parent
        onPressed: error=""
    }
}