| 81 | } |
| 82 | |
| 83 | void QmitkParagraphQuestionWidget::OnTextChanged() |
| 84 | { |
| 85 | m_Question->SetResponse(m_TextEdit->toPlainText().toStdString()); |
| 86 | |
| 87 | if (m_Question->IsRequired()) |
| 88 | this->SetRequirementVisible(!m_Question->IsComplete()); |
| 89 | |
| 90 | this->AdjustHeight(); |
| 91 | } |
nothing calls this directly
no test coverage detected