qdbus: add support for "aay" (QByteArrayList)
(I wish these common mappings were centralized though, so that annotations in the XML file wouldn't be needed) Change-Id: Ie3e8731e44b6e0338c8a044408c34160cf0a3a1e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> (cherry picked from commit 831aea1ce1a3f08188bed005d239e367917acf2a) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
a3aa88d21c
commit
fba271339b
@ -220,6 +220,9 @@ QDBusMetaObjectGenerator::findType(const QByteArray &signature,
|
||||
} else if (signature == "a{ss}") {
|
||||
result.name = "QMap<QString,QString>";
|
||||
type = qMetaTypeId<QMap<QString, QString> >();
|
||||
} else if (signature == "aay") {
|
||||
result.name = "QByteArrayList";
|
||||
type = qMetaTypeId<QByteArrayList>();
|
||||
} else {
|
||||
result.name = "{D-Bus type \"" + signature + "\"}";
|
||||
type = registerComplexDBusType(result.name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user