- 
    Bug 
- 
    Resolution: Fixed
- 
    P2: Important 
- 
    QSR 2.1
- 
    None
- 
        3a3a9b37b (dev), 377588ec4 (tqtc/lts-6.5), b9a66bdf1 (tqtc/lts-6.5.5)
Following case with iconColor property.
        Item {"
            property var iconColor: "#FF0000"
            property var backgroundColor: "#000000"
            SafePicture {
                id: safePicture
                objectName: "safePicture"
                property var iconColor: "#00FF00"
                property var backgroundColor: "#FFFFFF"
                x: 0
                y: 0
                width: 60
                height: 60
                color: iconColor
                fillColor: backgroundColor
                source: "iso_grs_7000_4_0246.dat"
                SafePicture {
                    id: safePictureChild
                    objectName: "safePictureChild"
                    x: 60
                    y: 0
                    width: 60
                    height: 60
                    color: iconColor
                    fillColor: backgroundColor
                    source: "iso_grs_7000_4_0246.dat"
            }
            }
            SafePicture {
                id: safePictureSibling
                objectName: "safePictureSibling"
                x: 0
                y: 60
                width: 60
                height: 60
                color: iconColor
                fillColor: backgroundColor
                source: "iso_grs_7000_4_0246.dat"
            }
        };