| 241 | } |
| 242 | |
| 243 | void TaskEditWidget::setToAnswersOnly(bool check) { |
| 244 | if (! check || ! editTask) |
| 245 | return; |
| 246 | |
| 247 | editTask->setTaskType(Task::AnswersOnly); |
| 248 | // editTask->setStandardOutputCheck(false); |
| 249 | // ui->standardOutputCheck->setCheckState(Qt::Unchecked); |
| 250 | refreshWidgetState(); |
| 251 | } |
| 252 | |
| 253 | void TaskEditWidget::setToInteraction(bool check) { |
| 254 | if (! check || ! editTask) |
nothing calls this directly
no test coverage detected