mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
refs #879, use test data in samples/unit tests
This commit is contained in:
committed by
Mathew Sutcliffe
parent
4b506f20ab
commit
e73c8c4f36
@@ -314,18 +314,11 @@ namespace BlackMisc
|
||||
return asyncCallWithArgumentList(QLatin1Literal("receiveLength"), argumentList);
|
||||
}
|
||||
|
||||
QDBusPendingReply<> receiveLengthsQl(const BlackMisc::CVariantList &lengthsList)
|
||||
QDBusPendingReply<> receiveVariantList(const BlackMisc::CVariantList &list)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(lengthsList);
|
||||
return asyncCallWithArgumentList(QLatin1Literal("receiveLengthsQl"), argumentList);
|
||||
}
|
||||
|
||||
QDBusPendingReply<> receiveLengthsQvl(const BlackMisc::CVariantList &lengthsVariantList)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(lengthsVariantList);
|
||||
return asyncCallWithArgumentList(QLatin1Literal("receiveLengthsQvl"), argumentList);
|
||||
argumentList << QVariant::fromValue(list);
|
||||
return asyncCallWithArgumentList(QLatin1Literal("receiveVariantList"), argumentList);
|
||||
}
|
||||
|
||||
QDBusPendingReply<> receiveList(const QList<double> &list)
|
||||
|
||||
Reference in New Issue
Block a user