summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeloader/data/QTBUG_17114.qml
blob: 8a49733a8cca5260ded191f3043665c555b79544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 1.1

Rectangle {
    property real loaderWidth: loader.width
    property real loaderHeight: loader.height
    width: 200
    height: 200

    Loader {
        id: loader
        sourceComponent: Item {
            property real iwidth: 32
            property real iheight: 32
            width: iwidth
            height: iheight
        }
    }
}