1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-24 11:04:10 -04:00

Multi device support: removed main window channel acion dependency

This commit is contained in:
f4exb
2016-05-14 20:57:43 +02:00
parent 58709e0bae
commit 3cba9014b6
15 changed files with 37 additions and 37 deletions
+3 -3
View File
@@ -45,9 +45,9 @@ void DSDDemodPlugin::initPlugin(PluginAPI* pluginAPI)
m_pluginAPI = pluginAPI;
// register DSD demodulator
QAction* action = new QAction(tr("&DSD Demodulator"), this);
connect(action, SIGNAL(triggered()), this, SLOT(createInstanceDSDDemod()));
m_pluginAPI->registerChannel("sdrangel.channel.dsddemod", this, action);
// QAction* action = new QAction(tr("&DSD Demodulator"), this);
// connect(action, SIGNAL(triggered()), this, SLOT(createInstanceDSDDemod()));
m_pluginAPI->registerChannel("sdrangel.channel.dsddemod", this);
}
PluginGUI* DSDDemodPlugin::createChannel(const QString& channelName)