| 274 | } |
| 275 | |
| 276 | void MarkerPanel::deleteChannel(QString name) |
| 277 | { |
| 278 | if(!m_map.contains(name)) |
| 279 | return; |
| 280 | QWidget *w = m_map[name]; |
| 281 | m_panelLayout->removeWidget(w); |
| 282 | delete w; |
| 283 | m_map.remove(name); |
| 284 | } |
| 285 | |
| 286 | void MarkerPanel::updateChannel(QString name, QList<PlotMarkerController::MarkerInfo> mi) |
| 287 | { |
nothing calls this directly
no test coverage detected