aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/updateCall.qml
blob: d310dcac9ef67ecebf08f01a8de1f7de63b7d008 (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 2.1

Rectangle {
    MouseArea {
        anchors.fill: parent;
        Component.onCompleted: {
            update();
        }
    }
}