| 60 | } |
| 61 | |
| 62 | void EnvironmentSelectionWidget::setCurrentProfile(const QString& profile) |
| 63 | { |
| 64 | Q_D(EnvironmentSelectionWidget); |
| 65 | |
| 66 | d->comboBox->setCurrentIndex(d->comboBox->findData(profile, Qt::EditRole)); |
| 67 | emit currentProfileChanged(profile); |
| 68 | } |
| 69 | |
| 70 | void EnvironmentSelectionWidget::reconfigure() |
| 71 | { |
no test coverage detected