| 125 | } |
| 126 | |
| 127 | void MidiClockIn::BuildDeviceList() |
| 128 | { |
| 129 | mDeviceList->Clear(); |
| 130 | const std::vector<std::string>& devices = mDevice.GetPortList(true); |
| 131 | for (int i = 0; i < devices.size(); ++i) |
| 132 | mDeviceList->AddLabel(devices[i].c_str(), i); |
| 133 | } |
| 134 | |
| 135 | void MidiClockIn::OnMidi(const juce::MidiMessage& message) |
| 136 | { |
nothing calls this directly
no test coverage detected