| 156 | } |
| 157 | |
| 158 | void WizUserCipherForm::setHint(const QString& strHint) |
| 159 | { |
| 160 | if (strHint.isEmpty()) { |
| 161 | ui->labelHint->setVisible(false); |
| 162 | ui->label_2->setVisible(false); |
| 163 | } else { |
| 164 | ui->labelHint->setText(strHint); |
| 165 | ui->labelHint->setVisible(true); |
| 166 | ui->label_2->setVisible(true); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void WizUserCipherForm::setCipherEditorFocus() |
| 171 | { |
no test coverage detected