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

UDP source: removed rollup widget save/restore state during serialization/deserialization

This commit is contained in:
f4exb 2017-10-05 00:28:05 +02:00
parent d0943b384f
commit dabe952b40

View File

@ -89,7 +89,6 @@ void UDPSrcGUI::resetToDefaults()
QByteArray UDPSrcGUI::serialize() const
{
SimpleSerializer s(1);
s.writeBlob(1, saveState());
s.writeS32(2, m_channelMarker.getCenterFrequency());
s.writeS32(3, m_sampleFormat);
s.writeReal(4, m_outputSampleRate);
@ -128,8 +127,6 @@ bool UDPSrcGUI::deserialize(const QByteArray& data)
blockApplySettings(true);
m_channelMarker.blockSignals(true);
d.readBlob(1, &bytetmp);
restoreState(bytetmp);
d.readBlob(6, &bytetmp);
m_channelMarker.deserialize(bytetmp);