| 154 | } |
| 155 | |
| 156 | void OpenContestWidget::currentRowChanged() { |
| 157 | int index = ui->recentContest->currentRow(); |
| 158 | |
| 159 | if (index != -1) { |
| 160 | ui->deleteButton->setEnabled(true); |
| 161 | } else { |
| 162 | ui->deleteButton->setEnabled(false); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | auto OpenContestWidget::getRecentContest() const -> const QStringList & { return recentContest; } |
| 167 |
nothing calls this directly
no outgoing calls
no test coverage detected