Skip to content
Snippets Groups Projects
Commit 7d423d5f authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlDesigner: Fix crash in property editor when parent of an item is invalid

Happened for

import Qt 4.6
Flipable {
  Rectangle {}
}
parent 0cb84165
No related branches found
No related tags found
No related merge requests found
......@@ -87,19 +87,20 @@ void SiblingComboBox::setup()
}
QmlItemNode parent(m_itemNode.instanceParent().toQmlItemNode());
m_itemList.prepend(parent);
QString parentString("Parent (");
if (parent.id().isEmpty())
parentString += parent.simplfiedTypeName();
else
parentString += parent.id();
parentString += ")";
insertItem(0, parentString);
if (parent.isValid()) {
m_itemList.prepend(parent);
QString parentString("Parent (");
if (parent.id().isEmpty())
parentString += parent.simplfiedTypeName();
else
parentString += parent.id();
parentString += ")";
insertItem(0, parentString);
}
setCurrentIndex(m_itemList.indexOf(m_selectedItemNode));
connect(this, SIGNAL(currentIndexChanged (int)), this, SLOT(changeSelection(int)));
}
......
import Qt 4.6
Rectangle {
width: 640
height: 480
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment