QmlDesigner: Remove qDebugs

Change-Id: Iab635145cb2cde87c8d229983e1436910e90f0e4
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Marco Bubke
2013-09-10 18:08:57 +02:00
parent bd9cf4bc87
commit 8336a1b7ec

View File

@@ -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<QQuickItem*>(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";
}