aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeqt/data/size.qml
blob: 8e102eb6cb53713041771bcd66dfc34ae8c2e3ab (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 1.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);
}