| 36 | } |
| 37 | |
| 38 | void CreateFeatureDialog::OnListItemSelected(QModelIndex const & i) |
| 39 | { |
| 40 | auto const clType = i.data(Qt::DisplayRole).toString().toStdString(); |
| 41 | m_selectedType = classif().GetTypeByReadableObjectName(clType); |
| 42 | ASSERT(m_selectedType != ftype::GetEmptyValue(), ()); |
| 43 | |
| 44 | accept(); |
| 45 | } |
nothing calls this directly
no test coverage detected