forked from qt-creator/qt-creator
QmlDesigner: using QtQuick 1.0 instead of Qt 4.7
huge renaming from Qt to QtQuick propertyeditor qml files moved from Qt to QtQuick auotests fixed files used in tests fixed autotests pass Task-number: QTCREATORBUG-2556 Reviewed-by: Kai Koehne
This commit is contained in:
@@ -109,7 +109,7 @@ void ComponentView::searchForComponentAndAddToList(const ModelNode &node)
|
||||
|
||||
|
||||
foreach (const ModelNode &childNode, nodeList) {
|
||||
if (childNode.type() == "Qt/Component") {
|
||||
if (childNode.type() == "QtQuick/Component") {
|
||||
if (!childNode.id().isEmpty()) {
|
||||
QStandardItem *item = new QStandardItem(childNode.id());
|
||||
item->setData(QVariant::fromValue(childNode), ModelNodeRole);
|
||||
|
||||
Reference in New Issue
Block a user