| 379 | } |
| 380 | |
| 381 | void GRTimePlotAddon::onChannelRemoved(ChannelAddon *t) |
| 382 | { |
| 383 | |
| 384 | if(plot()->selectedChannel() == t->plotCh()) |
| 385 | plot()->selectChannel(nullptr); |
| 386 | auto ch = dynamic_cast<GRTimeChannelAddon *>(t); |
| 387 | if(ch) |
| 388 | grChannels.removeAll(ch); |
| 389 | } |
| 390 | |
| 391 | void GRTimePlotAddon::connectSignalPaths() |
| 392 | { |
no test coverage detected