| 251 | } |
| 252 | |
| 253 | void TaskEditWidget::setToInteraction(bool check) { |
| 254 | if (! check || ! editTask) |
| 255 | return; |
| 256 | |
| 257 | editTask->setTaskType(Task::Interaction); |
| 258 | // editTask->setStandardOutputCheck(true); |
| 259 | // ui->standardOutputCheck->setCheckState(Qt::Checked); |
| 260 | refreshWidgetState(); |
| 261 | } |
| 262 | |
| 263 | void TaskEditWidget::setToCommunication(bool check) { |
| 264 | if (! check || ! editTask) |
nothing calls this directly
no test coverage detected