aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/point.qml
blob: 8b0188eaa70f8ef62e05833b81cd07fb33d3bfdd (plain)
1
2
3
4
5
6
7
8
9
import QtQuick 1.0

QtObject {
    property variant test1: Qt.point(19, 34);
    property variant test2: Qt.point(-3, 109.2);
    property variant test3: Qt.point(-3);
    property variant test4: Qt.point(-3, 109.2, 1);
}