mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-17 13:51:47 -05: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)
|
||||
{
|
||||
ds << inObj.m_id << inObj.m_sequence << inObj.m_args;
|
||||
return ds;
|
||||
}
|
||||
|
||||
QDataStream &operator>>(QDataStream &ds, DeviceUserArgs::Args &outObj)
|
||||
{
|
||||
ds >> outObj.m_id >> outObj.m_sequence >> outObj.m_args;
|
||||
return ds;
|
||||
}
|
||||
|
||||
QByteArray DeviceUserArgs::serialize() const
|
||||
|
Loading…
Reference in New Issue
Block a user