| 54 | } |
| 55 | |
| 56 | ILauncher* LaunchConfigurationType::launcherForId(const QString& id) const |
| 57 | { |
| 58 | Q_D(const LaunchConfigurationType); |
| 59 | |
| 60 | for (ILauncher* l : std::as_const(d->starters)) { |
| 61 | if( l->id() == id ) { |
| 62 | return l; |
| 63 | } |
| 64 | } |
| 65 | return nullptr; |
| 66 | } |
| 67 | |
| 68 | } |
| 69 |
no test coverage detected