The following code generates the warning in the subject line.
Can anyone tell me what is causing this ?

Item
{
..
    Text
    {
        id: goodbye
        text: "Goodbye"
        color: "red"
        anchors.horizontalCenter: page.horizontalCenter
        anchors.verticalCenter: page.verticalCenter
        rotation: 0
    }

    ParallelAnimation
    {
        RotationAnimation
        {
            id: rot
            target: goodbye
            loops: Animation.Infinite
            from: 0
            to: 360
            duration: 4000
        }
        ColorAnimation
        {
            target: goodbye
            from: "red"
            to: "blue"
        }
   }
}

-- 
Stephen Collyer
_______________________________________________
Qt-qml mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-qml

Reply via email to