forked from qt-creator/qt-creator
Fix some connections to PathChooser::validChanged().
These were overlooked in 329c493764.
Change-Id: I99d4011a8de0ea52d0989f6240bbee58aaf75f6f
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
committed by
Christian Kandeler
parent
f1057c4df2
commit
7f34f58e25
@@ -439,7 +439,7 @@ CustomWizardPage::CustomWizardPage(const QSharedPointer<CustomWizardContext> &ct
|
||||
{
|
||||
m_pathChooser->setHistoryCompleter(QLatin1String("PE.ProjectDir.History"));
|
||||
addRow(tr("Path:"), m_pathChooser);
|
||||
connect(m_pathChooser, SIGNAL(validChanged()), this, SIGNAL(completeChanged()));
|
||||
connect(m_pathChooser, SIGNAL(validChanged(bool)), this, SIGNAL(completeChanged()));
|
||||
}
|
||||
|
||||
QString CustomWizardPage::path() const
|
||||
|
||||
@@ -647,7 +647,7 @@ NonInternalLibraryDetailsController::NonInternalLibraryDetailsController(
|
||||
libraryDetailsWidget()->libraryPathChooser->setExpectedKind(Utils::PathChooser::File);
|
||||
}
|
||||
|
||||
connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(validChanged()),
|
||||
connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(validChanged(bool)),
|
||||
this, SIGNAL(completeChanged()));
|
||||
connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(changed(QString)),
|
||||
this, SLOT(slotLibraryPathChanged()));
|
||||
|
||||
@@ -55,11 +55,11 @@ TestWizardPage::TestWizardPage(QWidget *parent) :
|
||||
this, SLOT(slotClassNameEdited(QString)));
|
||||
connect(ui->fileLineEdit, SIGNAL(textEdited(QString)), \
|
||||
this, SLOT(slotFileNameEdited()));
|
||||
connect(ui->testClassLineEdit, SIGNAL(validChanged()),
|
||||
connect(ui->testClassLineEdit, SIGNAL(validChanged(bool)),
|
||||
this, SLOT(slotUpdateValid()));
|
||||
connect(ui->testSlotLineEdit, SIGNAL(validChanged()),
|
||||
connect(ui->testSlotLineEdit, SIGNAL(validChanged(bool)),
|
||||
this, SLOT(slotUpdateValid()));
|
||||
connect(ui->fileLineEdit, SIGNAL(validChanged()),
|
||||
connect(ui->fileLineEdit, SIGNAL(validChanged(bool)),
|
||||
this, SLOT(slotUpdateValid()));
|
||||
|
||||
setProperty(Utils::SHORT_TITLE_PROPERTY, tr("Details"));
|
||||
|
||||
@@ -65,7 +65,7 @@ GenericLinuxDeviceConfigurationWizardSetupPage::GenericLinuxDeviceConfigurationW
|
||||
connect(d->ui.nameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||||
connect(d->ui.hostNameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||||
connect(d->ui.userNameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||||
connect(d->ui.privateKeyPathChooser, SIGNAL(validChanged()), SIGNAL(completeChanged()));
|
||||
connect(d->ui.privateKeyPathChooser, SIGNAL(validChanged(bool)), SIGNAL(completeChanged()));
|
||||
connect(d->ui.passwordButton, SIGNAL(toggled(bool)), SLOT(handleAuthTypeChanged()));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user