| 322 | } |
| 323 | |
| 324 | void TaskEditWidget::standardInputCheckChanged() { |
| 325 | if (! editTask) |
| 326 | return; |
| 327 | |
| 328 | bool check = ui->standardInputCheck->isChecked(); |
| 329 | editTask->setStandardInputCheck(check); |
| 330 | ui->inputFileName->setEnabled(! check); |
| 331 | } |
| 332 | |
| 333 | void TaskEditWidget::standardOutputCheckChanged() { |
| 334 | if (! editTask) |
nothing calls this directly
no test coverage detected