| 2286 | } |
| 2287 | |
| 2288 | void MainWindow::refreshStreamingCombo() { |
| 2289 | QStringList names; |
| 2290 | for (const auto* ds : session_->extensionCatalog().streamSources()) { |
| 2291 | names << QString::fromStdString(ds->name); |
| 2292 | } |
| 2293 | ui_->leftPanel->setStreamingSources(names); |
| 2294 | } |
| 2295 | |
| 2296 | void MainWindow::wireExistingPlots() { |
| 2297 | forEachDocker([this](PlotDocker* docker) { onPlotTabAdded(docker); }); |
nothing calls this directly
no test coverage detected