| 71 | } |
| 72 | |
| 73 | void QmitkDropdownQuestionWidget::CreateWidgets() |
| 74 | { |
| 75 | this->RemoveWidgets(); |
| 76 | |
| 77 | for (const auto& option : m_Question->GetOptions()) |
| 78 | m_ComboBox->addItem(QString::fromStdString(option)); |
| 79 | } |
| 80 | |
| 81 | void QmitkDropdownQuestionWidget::RemoveWidgets() |
| 82 | { |
no test coverage detected