| 20 | using Self = QmitkDropdownQuestionWidget; |
| 21 | |
| 22 | QmitkDropdownQuestionWidget::QmitkDropdownQuestionWidget(QWidget* parent) |
| 23 | : QmitkQuestionWidget(parent), |
| 24 | m_Question(nullptr), |
| 25 | m_Layout(new QVBoxLayout), |
| 26 | m_ComboBox(new QComboBox) |
| 27 | { |
| 28 | m_Layout->addWidget(m_ComboBox); |
| 29 | |
| 30 | this->InsertLayout(m_Layout); |
| 31 | |
| 32 | connect(m_ComboBox, &QComboBox::currentIndexChanged, this, &Self::OnCurrentIndexChanged); |
| 33 | } |
| 34 | |
| 35 | QmitkDropdownQuestionWidget::~QmitkDropdownQuestionWidget() |
| 36 | { |
nothing calls this directly
no test coverage detected