-
Bug
-
Resolution: Done
-
P1: Critical
-
None
-
4.7.3
-
None
The code below runs fine, except when the "import QtQuick 1.1" is changed to "import QtQuick 1.0" in BlueRect.qml it results in a "The program has unexpectedly finished." crash.
Main.qml
import QtQuick 1.0
Item {
width: 640
height: 480
YellowRect {
anchors.centerIn: parent
}
}
BlueRect.qml
import QtQuick 1.1 // Change this to 1.0 and the application crashes Rectangle { color: "blue" width: 200 height: 200 }
YellowRect.qml
import QtQuick 1.1 BlueRect { color: "yellow" implicitWidth: 100 implicitHeight: 100 }