| 5599 | } |
| 5600 | |
| 5601 | void RadioModel::updateStreamFilters() |
| 5602 | { |
| 5603 | // Register all known pan/wf stream IDs with PanadapterStream |
| 5604 | for (auto* pan : m_panadapters) { |
| 5605 | if (pan->panStreamId()) |
| 5606 | m_panStream->registerPanStream(pan->panStreamId()); |
| 5607 | if (pan->wfStreamId()) |
| 5608 | m_panStream->registerWfStream(pan->wfStreamId()); |
| 5609 | } |
| 5610 | } |
| 5611 | |
| 5612 | void RadioModel::configurePan(const QString& panId) |
| 5613 | { |
nothing calls this directly
no test coverage detected