| 86 | } |
| 87 | |
| 88 | void MidiClockOut::BuildDeviceList() |
| 89 | { |
| 90 | mDeviceList->Clear(); |
| 91 | const std::vector<std::string>& devices = mDevice.GetPortList(false); |
| 92 | for (int i = 0; i < devices.size(); ++i) |
| 93 | mDeviceList->AddLabel(devices[i].c_str(), i); |
| 94 | } |
| 95 | |
| 96 | void MidiClockOut::OnTransportAdvanced(float amount) |
| 97 | { |
nothing calls this directly
no test coverage detected