| 53 | EnvironmentSelectionWidget::~EnvironmentSelectionWidget() = default; |
| 54 | |
| 55 | QString EnvironmentSelectionWidget::currentProfile() const |
| 56 | { |
| 57 | Q_D(const EnvironmentSelectionWidget); |
| 58 | |
| 59 | return d->model->index(d->comboBox->currentIndex(), 0).data(Qt::EditRole).toString(); |
| 60 | } |
| 61 | |
| 62 | void EnvironmentSelectionWidget::setCurrentProfile(const QString& profile) |
| 63 | { |
no test coverage detected