aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/size.qml
blob: 41051f4216004e2bc1a222c185d1d802b167a46e (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

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