From 359af254f08f69ccdfcfeea04cf6f49a91f84e92 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 3 May 2018 00:28:27 +0200 Subject: [PATCH] SSB modulator: fixed issue #167: typo in remove Tx registration method --- plugins/channeltx/modssb/ssbmodgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channeltx/modssb/ssbmodgui.cpp b/plugins/channeltx/modssb/ssbmodgui.cpp index 1f45221bc..d5e966927 100644 --- a/plugins/channeltx/modssb/ssbmodgui.cpp +++ b/plugins/channeltx/modssb/ssbmodgui.cpp @@ -459,7 +459,7 @@ SSBModGUI::SSBModGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, BasebandSam SSBModGUI::~SSBModGUI() { - m_deviceUISet->removeRxChannelInstance(this); + m_deviceUISet->removeTxChannelInstance(this); delete m_ssbMod; // TODO: check this: when the GUI closes it has to delete the modulator delete m_spectrumVis; delete ui;