From f972925392b056487ba228d34bb5f0e407e33d6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Tue, 19 Mar 2013 03:34:28 +0100 Subject: [PATCH] these signals have gone --- src/declarativeimports/core/dialog.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/declarativeimports/core/dialog.cpp b/src/declarativeimports/core/dialog.cpp index 625f28f07..2229d188d 100644 --- a/src/declarativeimports/core/dialog.cpp +++ b/src/declarativeimports/core/dialog.cpp @@ -116,18 +116,6 @@ void DialogProxy::setMainItem(QQuickItem *mainItem) if (mainItem->metaObject()->indexOfSignal("heightChanged")) { connect(mainItem, SIGNAL(heightChanged()), m_syncTimer, SIGNAL(start())); } - if (mainItem->metaObject()->indexOfSignal("minimumWidthChanged")) { - connect(mainItem, SIGNAL(minimumWidthChanged()), this, SIGNAL(minimumWidthChanged())); - } - if (mainItem->metaObject()->indexOfSignal("minimumHeightChanged")) { - connect(mainItem, SIGNAL(minimumHeightChanged()), this, SIGNAL(minimumHeightChanged())); - } - if (mainItem->metaObject()->indexOfSignal("maximumWidthChanged")) { - connect(mainItem, SIGNAL(maximumWidthChanged()), this, SIGNAL(maximumWidthChanged())); - } - if (mainItem->metaObject()->indexOfSignal("maximumHeightChanged")) { - connect(mainItem, SIGNAL(maximumHeightChanged()), this, SIGNAL(maximumHeightChanged())); - } } //if this is called in Compenent.onCompleted we have to wait a loop the item is added to a scene