| 4553 | |
| 4554 | |
| 4555 | bool WizDatabase::initBizCert() |
| 4556 | { |
| 4557 | WizInitBizCertDialog dlg(this); |
| 4558 | if (dlg.exec() == QDialog::Accepted) |
| 4559 | { |
| 4560 | WizUserCertPassword::Instance().setPassword(bizGuid(), dlg.userCertPassword()); |
| 4561 | return true; |
| 4562 | } |
| 4563 | // |
| 4564 | return false; |
| 4565 | } |
| 4566 | |
| 4567 | void WizDatabase::clearCertPassword() |
| 4568 | { |
nothing calls this directly
no test coverage detected