| 548 | } |
| 549 | |
| 550 | void TaskEditWidget::rmSourceFileClicked() { |
| 551 | if (! editTask) |
| 552 | return; |
| 553 | |
| 554 | QList<QTableWidgetSelectionRange> ranges = ui->sourceFilesTable->selectedRanges(); |
| 555 | |
| 556 | if (ranges.length() <= 0) |
| 557 | return; |
| 558 | |
| 559 | rmSourceFilesAt(ranges.at(0).topRow()); |
| 560 | multiFilesRefresh(); |
| 561 | } |
| 562 | |
| 563 | void TaskEditWidget::rmGraderFileClicked() { |
| 564 | if (! editTask) |
nothing calls this directly
no outgoing calls
no test coverage detected