| 231 | } |
| 232 | |
| 233 | void TaskEditWidget::setToTraditional(bool check) { |
| 234 | if (! check || ! editTask) |
| 235 | return; |
| 236 | |
| 237 | editTask->setTaskType(Task::Traditional); |
| 238 | // editTask->setStandardOutputCheck(false); //fix stdout not save |
| 239 | // ui->standardOutputCheck->setCheckState(Qt::Unchecked); |
| 240 | refreshWidgetState(); |
| 241 | } |
| 242 | |
| 243 | void TaskEditWidget::setToAnswersOnly(bool check) { |
| 244 | if (! check || ! editTask) |
nothing calls this directly
no test coverage detected