aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/RootReplacementStyle.qml
blob: 0432a21b78bde38dec141f65f3a97ab899784547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import QtQuick 2.1

Item {
    id: root
    Rectangle {
        id: rectangle0
        Image {
            id: rectangle1
            x: 10
            y: 10
            height: 150
            width: 100
            source: "qt/icon.png"
        }
    }
    Image {
        id: rectangle4
        x: 10;
        y: 10;
        height: 150
        width: 100
        source: "qt/realcool.jpg"
    }
}