| 418 | } |
| 419 | |
| 420 | int CtrlrManager::getModulatorVstIndexByName(const String &modulatorName) |
| 421 | { |
| 422 | CtrlrModulator *m = getModulator(modulatorName); |
| 423 | |
| 424 | if (m) |
| 425 | { |
| 426 | return (m->getVstIndex()); |
| 427 | } |
| 428 | else |
| 429 | { |
| 430 | return (-1); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | int CtrlrManager::compareElements (CtrlrModulator *first, CtrlrModulator *second) |
| 435 | { |
nothing calls this directly
no test coverage detected