forked from qt-creator/qt-creator
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user