| 768 | } |
| 769 | |
| 770 | void CtrlrPanel::setMidiChannelToAllModulators (const int newChannel) |
| 771 | { |
| 772 | for (int i=0; i<ctrlrModulators.size(); i++) |
| 773 | { |
| 774 | if (ctrlrModulators[i]->getMidiMessagePtr()) |
| 775 | { |
| 776 | ctrlrModulators[i]->getMidiMessage().setChannel (newChannel); |
| 777 | } |
| 778 | } |
| 779 | } |
| 780 | |
| 781 | void CtrlrPanel::setInitialProgramValue (const String &modulatorName, const var &value) |
| 782 | { |
nothing calls this directly
no test coverage detected