| 1373 | /** MIDI Stuff */ |
| 1374 | |
| 1375 | void CtrlrPanel::queueMessageForHostOutput(const CtrlrMidiMessage &m) |
| 1376 | { |
| 1377 | if (isMidiInPaused()) |
| 1378 | return; |
| 1379 | |
| 1380 | if (getMidiOptionBool (panelMidiOutputToHost)) |
| 1381 | { |
| 1382 | owner.getProcessorOwner()->addMidiToOutputQueue (m); |
| 1383 | } |
| 1384 | } |
| 1385 | |
| 1386 | void CtrlrPanel::queueMessageForHostOutput(const MidiMessage &m) |
| 1387 | { |
nothing calls this directly
no test coverage detected