Skip to content
  • qdbusreply: unexpected reply signature?

    Unsolved General and Desktop dbus qdbus signature error
    2
    0 Votes
    2 Posts
    949 Views
    F
    You have to register the expected Response first! In my case it was like #include <QtDBus/QDBusMetaType> // ... typedef QMap<QString, QMap<QString, QVariant> > ConnectionDetails; Q_DECLARE_METATYPE(ConnectionDetails) and int main() { qDBusRegisterMetaType<ConnectionDetails>(); // ... }