| 261 | } |
| 262 | |
| 263 | void TaskEditWidget::setToCommunication(bool check) { |
| 264 | if (! check || ! editTask) |
| 265 | return; |
| 266 | |
| 267 | editTask->setTaskType(Task::Communication); |
| 268 | refreshWidgetState(); |
| 269 | } |
| 270 | |
| 271 | void TaskEditWidget::setToCommunicationExec(bool check) { |
| 272 | if (! check || ! editTask) |
nothing calls this directly
no test coverage detected