Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
None
-
Qt Creator 4.9.0
-
None
Description
Using QtQuick as the project name doesn't throw a hint/warning/error in the wizard. It will create the following imports:
import QtQuick 2.12 import QtQuick 1.0 Rectangle { width: Constants.width height: Constants.height color: Constants.backgroundColor Text { text: qsTr("Hello QtQuick") anchors.centerIn: parent font.family: Constants.font.family } }
Which creates the following output when trying to run the application.
qmlscene: 'import QtQuick 1.0' is no longer supported. Use qmlviewer to load file '/home/hag/QtQuick/QtQuick.qml'.