1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Plugin interface: simplify createRxChannelGUI

This commit is contained in:
f4exb
2017-12-23 10:32:02 +01:00
parent 0f7faff299
commit 31aacc9571
27 changed files with 42 additions and 121 deletions
+1 -1
View File
@@ -184,7 +184,7 @@ void PluginManager::createRxChannelInstance(int channelPluginIndex, DeviceUISet
{
PluginInterface *pluginInterface = m_rxChannelRegistrations[channelPluginIndex].m_plugin;
BasebandSampleSink *rxChannel = pluginInterface->createRxChannelBS(deviceAPI);
pluginInterface->createRxChannelGUI(m_rxChannelRegistrations[channelPluginIndex].m_channelIdURI, deviceUISet, rxChannel);
pluginInterface->createRxChannelGUI(deviceUISet, rxChannel);
}
}