| 129 | } |
| 130 | |
| 131 | void PlotManager::addChannel(ChannelComponent *c) |
| 132 | { |
| 133 | m_channels.append(c->plotChannelCmpt()); |
| 134 | PlotComponent *plt = c->plotChannelCmpt()->plotComponent(); |
| 135 | plt->addChannel(c); |
| 136 | m_channelPlotcomboMap.insert(c, new PlotManagerCombobox(this, c)); |
| 137 | c->addChannelToPlot(); |
| 138 | } |
| 139 | |
| 140 | void PlotManager::removeChannel(ChannelComponent *c) |
| 141 | { |
no test coverage detected