| 140 | } |
| 141 | |
| 142 | void WizUserCipherForm::onCipher_changed(const QString &text) |
| 143 | { |
| 144 | if (text.isEmpty()) { |
| 145 | ui->buttonOk->setStatusNormal(); |
| 146 | ui->buttonOk->setLockNormalStatus(true); |
| 147 | } else { |
| 148 | ui->buttonOk->setLockNormalStatus(false); |
| 149 | ui->buttonOk->setStatusHot(); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void WizUserCipherForm::setPasswordText(const QString &strPasswordText) |
| 154 | { |
nothing calls this directly
no test coverage detected