Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.4.0, Qt Creator 4.9.2, Qt Creator 4.11.0
-
8f682573a819b6665c6b878d3921dc124af842e8
Description
With the following example, QtCreator will give auto-completion for only the last import using "as Controls" (and types from the first import will get squiggles under the type names)
import QtQuick 2.0 import QtQuick.Controls 1.4 as Controls import QtQuick.Controls.Styles 1.4 as Controls Item { width: 400 height: 400 Controls.ComboBox { style: Controls.ComboBoxStyle {} } }