Rename QDeclarative symbols to QQuick and QQml
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlpixmapcache / data / dataLeak.qml
1 import QtQuick 2.0
2
3 Item {
4     id: root
5     width: 800
6     height: 800
7
8     Image {
9         id: i1
10         source: "exists1.png";
11         anchors.top: parent.top;
12     }
13     Image {
14         id: i2
15         source: "exists2.png"
16         anchors.top: i1.bottom;
17     }
18 }