From b2a04cdfef20e7902261873db16e424fe400a24f Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 25 Nov 2015 16:33:52 +0100 Subject: [PATCH] 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 --- src/plugins/projectexplorer/kitinformationconfigwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/kitinformationconfigwidget.cpp b/src/plugins/projectexplorer/kitinformationconfigwidget.cpp index db62738ab5e..5a78258b0a6 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); }