| 300 | } |
| 301 | |
| 302 | void TaskEditWidget::subFolderCheckChanged() { |
| 303 | if (! editTask) |
| 304 | return; |
| 305 | |
| 306 | bool check = ui->subFolderCheck->isChecked(); |
| 307 | editTask->setSubFolderCheck(check); |
| 308 | } |
| 309 | |
| 310 | void TaskEditWidget::inputFileNameChanged(const QString &text) { |
| 311 | if (! editTask) |
nothing calls this directly
no test coverage detected