| 288 | } |
| 289 | |
| 290 | void KDevelop::expandVariables(QMap<QString, QString>& variables, const QProcessEnvironment& environment) |
| 291 | { |
| 292 | QMap<QString, QString> expanded; |
| 293 | for (auto it = variables.cbegin(), end = variables.cend(); it != end; ++it) { |
| 294 | expandVariable(it.key(), it.value(), expanded, variables, environment); |
| 295 | } |
| 296 | variables = expanded; |
| 297 | } |
nothing calls this directly
no test coverage detected