summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/selftest_noimages/selftest_noimages.qml
blob: 21a19bc5e68a08814b8f53251b0f4d5c2ae1241a (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6
Text {
    property string error: "not pressed"
    text: (new Date()).valueOf()
    MouseRegion {
        anchors.fill: parent
        onPressed: error=""
    }
}