| 269 | } |
| 270 | |
| 271 | void TaskEditWidget::setToCommunicationExec(bool check) { |
| 272 | if (! check || ! editTask) |
| 273 | return; |
| 274 | |
| 275 | editTask->setTaskType(Task::CommunicationExec); |
| 276 | refreshWidgetState(); |
| 277 | } |
| 278 | |
| 279 | void TaskEditWidget::sourceFileNameChanged(const QString &text) { |
| 280 | if (! editTask) |
nothing calls this directly
no test coverage detected