diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp index ca7071f6925..795c18920e9 100644 --- a/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp +++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp @@ -64,7 +64,6 @@ void LayoutNodeInstance::setPropertyBinding(const PropertyName &name, const QStr LayoutNodeInstance::Pointer LayoutNodeInstance::create(QObject *object) { - qDebug() << "layout" << object; QQuickItem *item = qobject_cast(object); Q_ASSERT(item); @@ -83,10 +82,8 @@ LayoutNodeInstance::Pointer LayoutNodeInstance::create(QObject *object) void LayoutNodeInstance::refreshLayoutable() { - qDebug() << "before"; if (quickItem()->parent()) QCoreApplication::postEvent(quickItem(), new QEvent(QEvent::LayoutRequest)); - qDebug() << "refresh"; }