forked from qt-creator/qt-creator
Fix potential startup crashes
Change-Id: Id0f03b4fa9ff6a8f0f5b0de11fe51c3729065140 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
committed by
Tobias Hunger
parent
e2eb591c4c
commit
de9c2d3bf0
@@ -106,6 +106,7 @@ void Find::destroy()
|
||||
{
|
||||
delete m_instance;
|
||||
m_instance = 0;
|
||||
if (d) {
|
||||
delete d->m_currentDocumentFind;
|
||||
delete d->m_findToolBar;
|
||||
delete d->m_findDialog;
|
||||
@@ -113,6 +114,7 @@ void Find::destroy()
|
||||
delete d->m_searchResultWindow;
|
||||
delete d;
|
||||
}
|
||||
}
|
||||
|
||||
Find *Find::instance()
|
||||
{
|
||||
|
||||
@@ -331,11 +331,11 @@ public:
|
||||
QAction *m_projectSelectorActionQuick;
|
||||
QAction *m_runSubProject;
|
||||
|
||||
ProjectWindow *m_proWindow;
|
||||
ProjectWindow *m_proWindow = nullptr;
|
||||
QString m_sessionToRestoreAtStartup;
|
||||
|
||||
QStringList m_profileMimeTypes;
|
||||
AppOutputPane *m_outputPane;
|
||||
AppOutputPane *m_outputPane = nullptr;
|
||||
|
||||
QList<QPair<QString, QString> > m_recentProjects; // pair of filename, displayname
|
||||
static const int m_maxRecentProjects = 25;
|
||||
|
||||
Reference in New Issue
Block a user