https://bugs.kde.org/show_bug.cgi?id=389761
--- Comment #2 from Marco Martin <[email protected]> --- from the implementation of QQuickITem::polish() maybe d->window is a dangling pointer? void QQuickItem::polish() { Q_D(QQuickItem); if (!d->polishScheduled) { d->polishScheduled = true; if (d->window) { QQuickWindowPrivate *p = QQuickWindowPrivate::get(d->window); bool maybeupdate = p->itemsToPolish.isEmpty(); p->itemsToPolish.append(this); if (maybeupdate) d->window->maybeUpdate(); } } } -- You are receiving this mail because: You are watching all bug changes.
