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:
Christian Kandeler
2011-07-13 15:35:42 +02:00
parent 019c5ce6ef
commit 392377585c

View File

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