| 115 | EnvironmentProfileList::~EnvironmentProfileList() = default; |
| 116 | |
| 117 | QMap<QString, QString> EnvironmentProfileList::variables(const QString& profileName) const |
| 118 | { |
| 119 | Q_D(const EnvironmentProfileList); |
| 120 | |
| 121 | return d->m_profiles.value(profileName.isEmpty() ? d->m_defaultProfileName : profileName); |
| 122 | } |
| 123 | |
| 124 | QMap<QString, QString>& EnvironmentProfileList::variables(const QString& profileName) |
| 125 | { |
no test coverage detected