1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 14:04:46 -04:00

Multi device support: add channels and channel markers to the tab associated to the device plugin

This commit is contained in:
f4exb
2016-05-15 11:26:48 +02:00
parent 8d480c899d
commit a26174eb8b
5 changed files with 33 additions and 26 deletions
+2 -2
View File
@@ -46,12 +46,12 @@ void PluginAPI::removeChannelInstance(PluginGUI* pluginGUI)
void PluginAPI::addChannelMarker(ChannelMarker* channelMarker)
{
m_mainWindow->addChannelMarker(channelMarker); // TODO: suspect verify. No ref to main window expected.
m_pluginManager->addChannelMarker(channelMarker);
}
void PluginAPI::removeChannelMarker(ChannelMarker* channelMarker)
{
m_mainWindow->removeChannelMarker(channelMarker); // TODO: suspect verify. No ref to main window expected.
m_pluginManager->removeChannelMarker(channelMarker);
}
void PluginAPI::registerSampleSource(const QString& sourceName, PluginInterface* plugin)