aboutsummaryrefslogtreecommitdiffstats
path: root/src/quicktemplates2/qquickdial.cpp
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2016-09-07 15:49:37 +0200
committerMitch Curtis <mitch.curtis@qt.io>2016-09-12 12:17:23 +0000
commitd99e0764e2fe9bc7e652474b5d70e8b66154b807 (patch)
treedb159cfa9b6c4b4579104475420f12b04dcb98e1 /src/quicktemplates2/qquickdial.cpp
parent04779d6db3e8219ebda62de4a6f8e57fa62c0b6a (diff)
Delete replaced delegates after Component.completed() is emitted
This avoids the issue "Object destroyed during incubation" error. A proper fix is still required in the QML engine. Change-Id: I3c168cfe2d8c295662bcb5886e99a0f95748e302 Task-number: QTBUG-50992 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/quicktemplates2/qquickdial.cpp')
-rw-r--r--src/quicktemplates2/qquickdial.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/quicktemplates2/qquickdial.cpp b/src/quicktemplates2/qquickdial.cpp
index de220853..3b096255 100644
--- a/src/quicktemplates2/qquickdial.cpp
+++ b/src/quicktemplates2/qquickdial.cpp
@@ -480,6 +480,7 @@ void QQuickDial::setHandle(QQuickItem *handle)
if (handle == d->handle)
return;
+ d->deleteDelegate(d->handle);
d->handle = handle;
if (d->handle && !d->handle->parentItem())
d->handle->setParentItem(this);