| 124 | } |
| 125 | |
| 126 | void EnvironmentWidget::selectProfile(const QString& profileName) |
| 127 | { |
| 128 | const int profileIndex = m_environmentProfileListModel->profileIndex(profileName); |
| 129 | if (profileIndex < 0) { |
| 130 | return; |
| 131 | } |
| 132 | ui.profileSelect->setCurrentIndex(profileIndex); |
| 133 | } |
| 134 | |
| 135 | void EnvironmentWidget::updateDeleteVariableButton() |
| 136 | { |
no test coverage detected