| 958 | } |
| 959 | |
| 960 | std::vector<ModulatableSlider*> FireAudioProcessorEditor::getAllModulatableSliders() |
| 961 | { |
| 962 | std::vector<ModulatableSlider*> allSliders; |
| 963 | |
| 964 | // Get sliders from BandPanel |
| 965 | allSliders.insert(allSliders.end(), bandPanel.getModulatableSliders().begin(), bandPanel.getModulatableSliders().end()); |
| 966 | |
| 967 | // Get sliders from GlobalPanel |
| 968 | allSliders.insert(allSliders.end(), globalPanel.getModulatableSliders().begin(), globalPanel.getModulatableSliders().end()); |
| 969 | |
| 970 | return allSliders; |
| 971 | } |
| 972 | |
| 973 | void FireAudioProcessorEditor::updateModulationStates() |
| 974 | { |
nothing calls this directly
no outgoing calls
no test coverage detected