From 8336a1b7ecb111f87d2478b790c9946a9ad0f76d Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Tue, 10 Sep 2013 18:08:57 +0200 Subject: [PATCH] QmlDesigner: Remove qDebugs Change-Id: Iab635145cb2cde87c8d229983e1436910e90f0e4 Reviewed-by: Thomas Hartmann --- .../qml/qmlpuppet/qml2puppet/instances/layoutnodeinstance.cpp | 3 --- 1 file changed, 3 deletions(-) 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"; }