| 2344 | } |
| 2345 | |
| 2346 | void ModularSynth::ClearCircularDependencyMarkers() |
| 2347 | { |
| 2348 | for (int i = 0; i < mSources.size(); ++i) |
| 2349 | { |
| 2350 | IDrawableModule* module = dynamic_cast<IDrawableModule*>(mSources[i]); |
| 2351 | for (int j = 0; j < (int)module->GetPatchCableSources().size(); ++j) |
| 2352 | module->GetPatchCableSource(j)->SetIsPartOfCircularDependency(false); |
| 2353 | } |
| 2354 | } |
| 2355 | |
| 2356 | void ModularSynth::ResetLayout() |
| 2357 | { |
nothing calls this directly
no test coverage detected