mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
fixes "unable to login", discovered during #780,
* fixed bootstrap file * improved timeout of connect, now in single static function * some minor tweaks
This commit is contained in:
@@ -90,9 +90,9 @@ namespace BlackGui
|
||||
|
||||
void CDbLoginComponent::ps_onLoginClicked()
|
||||
{
|
||||
QString un(ui->le_Username->text().trimmed());
|
||||
QString pw(ui->le_Password->text().trimmed());
|
||||
CStatusMessageList msgs = m_loginService.login(un, pw);
|
||||
const QString un(ui->le_Username->text().trimmed());
|
||||
const QString pw(ui->le_Password->text().trimmed());
|
||||
const CStatusMessageList msgs = m_loginService.login(un, pw);
|
||||
|
||||
if (msgs.hasWarningOrErrorMessages())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user