forked from qt-creator/qt-creator
RemoteLinux: Fix wizard bug.
A condition was accidentally logically inverted. Change-Id: Ib74cc55e74a46d6fab3fcb82d00f391ce57c9f79 Reviewed-on: http://codereview.qt.nokia.com/1599 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
@@ -80,7 +80,7 @@ bool GenericLinuxDeviceConfigurationWizardSetupPage::isComplete() const
|
||||
{
|
||||
return !configurationName().isEmpty() && !hostName().isEmpty() && !userName().isEmpty()
|
||||
&& (authenticationType() == SshConnectionParameters::AuthenticationByPassword
|
||||
|| !m_d->ui.privateKeyPathChooser->isValid());
|
||||
|| m_d->ui.privateKeyPathChooser->isValid());
|
||||
}
|
||||
|
||||
QString GenericLinuxDeviceConfigurationWizardSetupPage::configurationName() const
|
||||
|
||||
Reference in New Issue
Block a user