Implement action de-marshalling.
Change-Id: Ie9ae85298fad6217f9f50a018fbba50f028deba2 Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>bb10
parent
375f5b4424
commit
0b6007936a
|
|
@ -125,8 +125,11 @@ QDBusArgument &operator<<(QDBusArgument &argument, const QSpiAction &action)
|
|||
|
||||
const QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAction &action)
|
||||
{
|
||||
Q_UNUSED(action)
|
||||
qWarning() << "QDBusArgument &operator>>(const QDBusArgument &argument, QSpiAction &action): implement me!";
|
||||
argument.beginStructure();
|
||||
argument >> action.name;
|
||||
argument >> action.description;
|
||||
argument >> action.keyBinding;
|
||||
argument.endStructure();
|
||||
return argument;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue