| 340 | } |
| 341 | |
| 342 | void TaskEditWidget::comparisonModeChanged() { |
| 343 | if (! editTask) |
| 344 | return; |
| 345 | |
| 346 | editTask->setComparisonMode(Task::ComparisonMode(ui->comparisonMode->currentIndex())); |
| 347 | } |
| 348 | |
| 349 | void TaskEditWidget::diffArgumentsChanged(const QString &argumentsList) { |
| 350 | if (! editTask) |
nothing calls this directly
no test coverage detected