| 561 | } |
| 562 | |
| 563 | void TaskEditWidget::rmGraderFileClicked() { |
| 564 | if (! editTask) |
| 565 | return; |
| 566 | |
| 567 | QList<QTableWidgetSelectionRange> ranges = ui->graderFilesTable->selectedRanges(); |
| 568 | |
| 569 | if (ranges.length() <= 0) |
| 570 | return; |
| 571 | |
| 572 | rmGraderFilesAt(ranges.at(0).topRow()); |
| 573 | multiFilesRefresh(); |
| 574 | } |
nothing calls this directly
no outgoing calls
no test coverage detected