| 31 | |
| 32 | |
| 33 | void LaunchConfigurationType::addLauncher( ILauncher* starter ) |
| 34 | { |
| 35 | Q_D(LaunchConfigurationType); |
| 36 | |
| 37 | if( !d->starters.contains( starter ) ) |
| 38 | { |
| 39 | d->starters.append( starter ); |
| 40 | } |
| 41 | } |
| 42 | void LaunchConfigurationType::removeLauncher( ILauncher* starter ) |
| 43 | { |
| 44 | Q_D(LaunchConfigurationType); |
no test coverage detected