| 171 | } |
| 172 | |
| 173 | void MessageBox::setShowDontShowAgain(bool show, const QString& label) { |
| 174 | dont_show_again_->setVisible(show); |
| 175 | if (!label.isEmpty()) { |
| 176 | dont_show_again_->setText(label); |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | bool MessageBox::dontShowAgainChecked() const { |
| 181 | return dont_show_again_->isVisible() && dont_show_again_->isChecked(); |
no test coverage detected