Implement action de-marshalling.

Change-Id: Ie9ae85298fad6217f9f50a018fbba50f028deba2
Reviewed-by: Morten Johan Sørvig <morten.sorvig@digia.com>
bb10
Frederik Gladhorn 2012-09-28 20:03:55 +02:00 committed by The Qt Project
parent 375f5b4424
commit 0b6007936a
1 changed files with 5 additions and 2 deletions

View File

@ -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;
}