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:
Christian Kandeler
2015-03-27 20:28:30 +01:00
committed by Christian Kandeler
parent f1057c4df2
commit 7f34f58e25
4 changed files with 6 additions and 6 deletions

View File

@@ -439,7 +439,7 @@ CustomWizardPage::CustomWizardPage(const QSharedPointer<CustomWizardContext> &ct
{ {
m_pathChooser->setHistoryCompleter(QLatin1String("PE.ProjectDir.History")); m_pathChooser->setHistoryCompleter(QLatin1String("PE.ProjectDir.History"));
addRow(tr("Path:"), m_pathChooser); 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 QString CustomWizardPage::path() const

View File

@@ -647,7 +647,7 @@ NonInternalLibraryDetailsController::NonInternalLibraryDetailsController(
libraryDetailsWidget()->libraryPathChooser->setExpectedKind(Utils::PathChooser::File); libraryDetailsWidget()->libraryPathChooser->setExpectedKind(Utils::PathChooser::File);
} }
connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(validChanged()), connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(validChanged(bool)),
this, SIGNAL(completeChanged())); this, SIGNAL(completeChanged()));
connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(changed(QString)), connect(libraryDetailsWidget()->libraryPathChooser, SIGNAL(changed(QString)),
this, SLOT(slotLibraryPathChanged())); this, SLOT(slotLibraryPathChanged()));

View File

@@ -55,11 +55,11 @@ TestWizardPage::TestWizardPage(QWidget *parent) :
this, SLOT(slotClassNameEdited(QString))); this, SLOT(slotClassNameEdited(QString)));
connect(ui->fileLineEdit, SIGNAL(textEdited(QString)), \ connect(ui->fileLineEdit, SIGNAL(textEdited(QString)), \
this, SLOT(slotFileNameEdited())); this, SLOT(slotFileNameEdited()));
connect(ui->testClassLineEdit, SIGNAL(validChanged()), connect(ui->testClassLineEdit, SIGNAL(validChanged(bool)),
this, SLOT(slotUpdateValid())); this, SLOT(slotUpdateValid()));
connect(ui->testSlotLineEdit, SIGNAL(validChanged()), connect(ui->testSlotLineEdit, SIGNAL(validChanged(bool)),
this, SLOT(slotUpdateValid())); this, SLOT(slotUpdateValid()));
connect(ui->fileLineEdit, SIGNAL(validChanged()), connect(ui->fileLineEdit, SIGNAL(validChanged(bool)),
this, SLOT(slotUpdateValid())); this, SLOT(slotUpdateValid()));
setProperty(Utils::SHORT_TITLE_PROPERTY, tr("Details")); setProperty(Utils::SHORT_TITLE_PROPERTY, tr("Details"));

View File

@@ -65,7 +65,7 @@ GenericLinuxDeviceConfigurationWizardSetupPage::GenericLinuxDeviceConfigurationW
connect(d->ui.nameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged())); connect(d->ui.nameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
connect(d->ui.hostNameLineEdit, 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.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())); connect(d->ui.passwordButton, SIGNAL(toggled(bool)), SLOT(handleAuthTypeChanged()));
} }