From 7e47ae111d529245b3e904c895de901fcff0b115 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 20 Aug 2015 15:37:56 +0200 Subject: [PATCH] Utils: Connect to PathChooser::pathChanged() in ProjectIntroPage. Instead of rawPathChanged(). This is consistent with the rest of the code, which uses PathChooser's path() accessor, rather than rawPath(). Change-Id: I3880e748fa53ae89756cf6e6d2df5de203281d45 Reviewed-by: Daniel Teske --- src/libs/utils/projectintropage.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp index bed6b8d0a3e..55553f62255 100644 --- a/src/libs/utils/projectintropage.cpp +++ b/src/libs/utils/projectintropage.cpp @@ -97,8 +97,7 @@ ProjectIntroPage::ProjectIntroPage(QWidget *parent) : d->m_ui.projectComboBox->setVisible(d->m_forceSubProject); d->m_ui.pathChooser->setDisabled(d->m_forceSubProject); d->m_ui.projectsDirectoryCheckBox->setDisabled(d->m_forceSubProject); - connect(d->m_ui.pathChooser, &PathChooser::rawPathChanged, - this, &ProjectIntroPage::slotChanged); + connect(d->m_ui.pathChooser, &PathChooser::pathChanged, this, &ProjectIntroPage::slotChanged); connect(d->m_ui.nameLineEdit, &QLineEdit::textChanged, this, &ProjectIntroPage::slotChanged); connect(d->m_ui.pathChooser, &PathChooser::validChanged,