diff options
author | Daniel Teske <daniel.teske@theqtcompany.com> | 2014-11-26 12:43:29 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2014-11-27 18:43:29 +0100 |
commit | b871b901badc972fe13a7bee7f186df59612b187 (patch) | |
tree | 6bc885097be587957d64f43331f7b17d6fc2fba5 | |
parent | da3b7a6c4acea0e19feb49e204e59c12295f90b4 (diff) | |
download | qt-creator-b871b901badc972fe13a7bee7f186df59612b187.tar.gz |
ProjectExplorer: Fix crash on deleting kit from new dialog
Task-number: QTCREATORBUG-13499
Change-Id: Ibcd591620469abf56270cc512de1583900ce78e3
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
-rw-r--r-- | src/plugins/projectexplorer/targetsetupwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/targetsetupwidget.cpp b/src/plugins/projectexplorer/targetsetupwidget.cpp index 8d1ef537fe..95c06fdb2d 100644 --- a/src/plugins/projectexplorer/targetsetupwidget.cpp +++ b/src/plugins/projectexplorer/targetsetupwidget.cpp @@ -232,7 +232,7 @@ void TargetSetupWidget::manageKit() page->showKit(m_kit); Core::ICore::showOptionsDialog(Constants::PROJECTEXPLORER_SETTINGS_CATEGORY, Constants::KITS_SETTINGS_PAGE_ID, - this); + this->parentWidget()); } void TargetSetupWidget::setProjectPath(const QString &projectPath) |