summaryrefslogtreecommitdiffstats
path: root/examples/declarative/dynamic/qml/GenericItem.qml
blob: faac06d715af68462dfcab7550e83420ad0fa0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Qt 4.7

Item{
    property bool created: false
    property string image
    width: imageItem.width
    height: imageItem.height
    z: 2
    Image{
        id: imageItem
        source: image; 
    }
}