summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-11-25 16:33:52 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-11-26 13:38:06 +0000
commitb2a04cdfef20e7902261873db16e424fe400a24f (patch)
treec41eea0df90cf1c096ed082ed048495ce6d7b19b /src/plugins/projectexplorer
parent9099a37d4b2056b35f59f6cff82fddbea38786bd (diff)
downloadqt-creator-b2a04cdfef20e7902261873db16e424fe400a24f.tar.gz
ProjectExplorer: Replace an occurrence of PathChooser::rawPathChanged.
As the associated slot uses PathChooser::path() rather than PathChooser::rawPath() and should therefore react to the pathChanged() signal instead. Change-Id: I63ab0957923bce366d43e9788c56f9a9d16d2d29 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer')
-rw-r--r--src/plugins/projectexplorer/kitinformationconfigwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/kitinformationconfigwidget.cpp b/src/plugins/projectexplorer/kitinformationconfigwidget.cpp
index db62738ab5..5a78258b0a 100644
--- a/src/plugins/projectexplorer/kitinformationconfigwidget.cpp
+++ b/src/plugins/projectexplorer/kitinformationconfigwidget.cpp
@@ -73,7 +73,7 @@ SysRootInformationConfigWidget::SysRootInformationConfigWidget(Kit *k, const Kit
m_chooser->setExpectedKind(Utils::PathChooser::ExistingDirectory);
m_chooser->setHistoryCompleter(QLatin1String("PE.SysRoot.History"));
m_chooser->setFileName(SysRootKitInformation::sysRoot(k));
- connect(m_chooser, &Utils::PathChooser::rawPathChanged,
+ connect(m_chooser, &Utils::PathChooser::pathChanged,
this, &SysRootInformationConfigWidget::pathWasChanged);
}