| 331 | } |
| 332 | |
| 333 | void TaskEditWidget::standardOutputCheckChanged() { |
| 334 | if (! editTask) |
| 335 | return; |
| 336 | |
| 337 | bool check = ui->standardOutputCheck->isChecked(); |
| 338 | editTask->setStandardOutputCheck(check); |
| 339 | ui->outputFileName->setEnabled(! check); |
| 340 | } |
| 341 | |
| 342 | void TaskEditWidget::comparisonModeChanged() { |
| 343 | if (! editTask) |
nothing calls this directly
no test coverage detected