Add Patch from Phenom:

Fix return to GenCertDialog when RsAccounts::GenerateSSLCertificate failed (if you enter a false password).
Now, directly abort.
And order tab stop.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7389 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2014-05-29 15:09:49 +00:00
parent e65f73a44d
commit 2ae9f2d50d
2 changed files with 29 additions and 19 deletions

View file

@ -464,8 +464,9 @@ void GenCertDialog::genPerson()
{
/* Message Dialog */
QMessageBox::warning(this,
tr("Generate ID Failure"),
tr("Failed to Generate your new Certificate, maybe PGP password is wrong!"),
QMessageBox::Ok);
}
}
tr("Generate ID Failure"),
tr("Failed to Generate your new Certificate, maybe PGP password is wrong!"),
QMessageBox::Ok);
reject();
}
}