Hi! I'm trying to pass QList of custom objects through dbus, but I'm simply getting nothing.

I've been able to pass objects of custom type MyObject, and everything seems to work fine. I read in the documentation of the class QDBusArgument that it is not necessary to implement the operator>> and operator<< if the array is a QList. So, I tried to create a signal with a QList<MyObject> as a parameter, but it seems nothing is sent (or received).

Am I misunderstanding the documentation? What can I do to pass QList's of custom objects (provided those are already marshalled)?
Thanks!