| 333 | } |
| 334 | |
| 335 | PlotDocker* TabbedPlotWidget::dockerAt(int index) { |
| 336 | if (index < 0 || index >= dockerCount()) { |
| 337 | return nullptr; |
| 338 | } |
| 339 | return tabs_[static_cast<std::size_t>(index)].docker; |
| 340 | } |
| 341 | |
| 342 | PlotDocker* TabbedPlotWidget::addTab(QString tab_name) { |
| 343 | if (tab_name.isEmpty()) { |
no outgoing calls