View Single Post
crabsody's Avatar
Posts: 63 | Thanked: 12 times | Joined on Feb 2010 @ Thessaloniki Greece
#14
I try to catch a signal when someone answers my call. When I executed dbus-monitor during such call I got this

Code:
signal sender=:1.17 -> dest=(null destination) serial=1824 path=/com/nokia/csd/call/1; interface=com.nokia.csd.Call.Instance; member=AudioConnect
   boolean true
   boolean true
   boolean false
So I translated as qt code as:
Code:
bus.connect("com.nokia.csd.Call.Instance", "/com/nokia/csd/call/1", "com.nokia.csd.Call.Instance", "AudioConnect", this, SLOT(handleCall(const QDBusMessage&)));
Sadly handleCall never executes!!! Any thoughts???