mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-29 05:22:25 -04:00
Fixed missing return value in deviceuserargs data stream functions
This commit is contained in:
parent
7b1232dbc2
commit
65f61dc620
@ -23,11 +23,13 @@
|
|||||||
QDataStream &operator<<(QDataStream &ds, const DeviceUserArgs::Args &inObj)
|
QDataStream &operator<<(QDataStream &ds, const DeviceUserArgs::Args &inObj)
|
||||||
{
|
{
|
||||||
ds << inObj.m_id << inObj.m_sequence << inObj.m_args;
|
ds << inObj.m_id << inObj.m_sequence << inObj.m_args;
|
||||||
|
return ds;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDataStream &operator>>(QDataStream &ds, DeviceUserArgs::Args &outObj)
|
QDataStream &operator>>(QDataStream &ds, DeviceUserArgs::Args &outObj)
|
||||||
{
|
{
|
||||||
ds >> outObj.m_id >> outObj.m_sequence >> outObj.m_args;
|
ds >> outObj.m_id >> outObj.m_sequence >> outObj.m_args;
|
||||||
|
return ds;
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray DeviceUserArgs::serialize() const
|
QByteArray DeviceUserArgs::serialize() const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user