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 <daniel.teske@theqtcompany.com>
This commit is contained in:
Christian Kandeler
2015-08-20 15:37:56 +02:00
parent 74e24084c8
commit 7e47ae111d

View File

@@ -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,