From kde-commits Fri May 04 17:02:26 2012 From: Sebastian Sauer Date: Fri, 04 May 2012 17:02:26 +0000 To: kde-commits Subject: [qtatspi] src: Fix proper marshal QSpiAction's Message-Id: <20120504170226.F301FA60A9 () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=133615108813814 Git commit ee28714d9a2ba5560f170fc6194de294220c62d2 by Sebastian Sauer. Committed on 04/05/2012 at 17:55. Pushed by sebsauer into branch 'master'. Fix proper marshal QSpiAction's M +5 -1 src/struct_marshallers.cpp http://commits.kde.org/qtatspi/ee28714d9a2ba5560f170fc6194de294220c62d2 diff --git a/src/struct_marshallers.cpp b/src/struct_marshallers.cpp index b827b98..2cdeda2 100644 --- a/src/struct_marshallers.cpp +++ b/src/struct_marshallers.cpp @@ -100,7 +100,11 @@ QDBusArgument &operator<<(QDBusArgument &argument, con= st 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; } =