QmlDesigner.Model: Fix default type name

Change-Id: I9d3bc10f770e4dedbef14bb98ea918e8cfcab5d4
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com>
This commit is contained in:
Marco Bubke
2012-09-04 10:31:46 +02:00
parent b3f54238eb
commit fa303d5ac1

View File

@@ -93,7 +93,7 @@ ModelPrivate::ModelPrivate(Model *model) :
m_writeLock(false), m_writeLock(false),
m_internalIdCounter(1) m_internalIdCounter(1)
{ {
m_rootInternalNode = createNode("QtQuick/Item", 1, 0, PropertyListType(), PropertyListType(), QString(), ModelNode::NodeWithoutSource,true); m_rootInternalNode = createNode("QtQuick.Item", 1, 0, PropertyListType(), PropertyListType(), QString(), ModelNode::NodeWithoutSource,true);
m_acutalStateNode = m_rootInternalNode; m_acutalStateNode = m_rootInternalNode;
} }