QmlDesigner: Remove superfluous deleteLater calls

All those QObjects are part of the parent child hierarchy
and do not have to be deleted manually.
This slicences two QCoreApplication::postEvent: Unexpected null receiver,
because the graphics scene is now created lazily.

Change-Id: Ibfe4aaed2173f591e90186b570f8c8bb9e708494
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Thomas Hartmann
2017-01-19 14:01:39 +01:00
parent cba001eff8
commit 7eda9ecb56
2 changed files with 0 additions and 6 deletions

View File

@@ -63,7 +63,6 @@ TextEditorView::TextEditorView(QObject *parent)
TextEditorView::~TextEditorView()
{
m_widget->deleteLater();
}
void TextEditorView::modelAttached(Model *model)