I have a dbus interface which works in d-feet as expected but when I want to call it from within my QT4 Application the list has zero size :(
I guess, aa{sv} can be used from Qt4 via QVariantList, right?
QDBusReply< QVariantList > reply = dbusinterface.call("getUsers");
QVariantList value = reply.value();
qDebug() << "user size: " << value.size();
Can't someone please shed some light on this? Thanks!