| 359 | |
| 360 | |
| 361 | void Module::processDependencies(Parameter* p) |
| 362 | { |
| 363 | //Dependencies |
| 364 | bool changed = false; |
| 365 | for (auto& d : dependencies) |
| 366 | { |
| 367 | |
| 368 | if (d->source == p) if (d->process()) changed = true; |
| 369 | } |
| 370 | |
| 371 | if (changed) |
| 372 | { |
| 373 | queuedNotifier.addMessage(new ContainerAsyncEvent(ContainerAsyncEvent::ControllableContainerNeedsRebuild, this)); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | InspectableEditor* Module::getEditorInternal(bool isRoot, Array<Inspectable*> inspectables) |
| 378 | { |