1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 18:15:45 -05:00

DSDDemod: fixes

This commit is contained in:
f4exb 2019-11-23 12:11:41 +01:00
parent 941bb715ee
commit 5c5079108b
3 changed files with 8 additions and 18 deletions

View File

@ -61,6 +61,9 @@ DSDDemod::DSDDemod(DeviceAPI *deviceAPI) :
applySettings(m_settings, true); applySettings(m_settings, true);
m_deviceAPI->addChannelSink(this);
m_deviceAPI->addChannelSinkAPI(this);
m_networkManager = new QNetworkAccessManager(); m_networkManager = new QNetworkAccessManager();
connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*))); connect(m_networkManager, SIGNAL(finished(QNetworkReply*)), this, SLOT(networkManagerFinished(QNetworkReply*)));
} }

View File

@ -6,7 +6,7 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>613</width> <width>650</width>
<height>392</height> <height>392</height>
</rect> </rect>
</property> </property>
@ -18,7 +18,7 @@
</property> </property>
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>610</width> <width>650</width>
<height>0</height> <height>0</height>
</size> </size>
</property> </property>
@ -39,7 +39,7 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>608</width> <width>648</width>
<height>172</height> <height>172</height>
</rect> </rect>
</property> </property>
@ -51,7 +51,7 @@
</property> </property>
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>608</width> <width>648</width>
<height>0</height> <height>0</height>
</size> </size>
</property> </property>
@ -557,19 +557,6 @@
</property> </property>
</widget> </widget>
</item> </item>
<item>
<spacer name="formatStatusSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout> </layout>
</item> </item>
</layout> </layout>

View File

@ -29,7 +29,7 @@
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = { const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
QString("DSD Demodulator"), QString("DSD Demodulator"),
QString("4.11.6"), QString("4.12.0"),
QString("(c) Edouard Griffiths, F4EXB"), QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,