| 308 | } |
| 309 | |
| 310 | void TaskEditWidget::inputFileNameChanged(const QString &text) { |
| 311 | if (! editTask) |
| 312 | return; |
| 313 | |
| 314 | editTask->setInputFileName(text); |
| 315 | } |
| 316 | |
| 317 | void TaskEditWidget::outputFileNameChanged(const QString &text) { |
| 318 | if (! editTask) |
nothing calls this directly
no test coverage detected