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

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