Bug fix: Late crash when closing Creator while building debugging helper (QTCREATORBUG-1576).

Reviewed-by: hjk
This commit is contained in:
Leandro Melo
2010-06-08 13:55:50 +02:00
parent fa382022e0
commit 72c74b7d5a
3 changed files with 8 additions and 1 deletions

View File

@@ -61,6 +61,11 @@ CoreImpl::CoreImpl(MainWindow *mainwindow)
m_mainwindow = mainwindow;
}
CoreImpl::~CoreImpl()
{
m_instance = 0;
}
QStringList CoreImpl::showNewItemDialog(const QString &title,
const QList<IWizard *> &wizards,
const QString &defaultLocation)