Hello,
Currently, I'm working on an application that runs in the background to watch the phone call event using qtopia-greenphone-sdk 4.1.7.
I use following code sample to achieve the target.

connect(phoneLine,newCall(const QPhoneCall),this,callAdded(const QPhoneCall));

void MyClient::callAdded(const QPhoneCall& call)
{
//
}
The problem is:
When I dial a number, the application can't enter into "callAdded" function unless the dialed part answers the call (the call is in "connected" state).
But I think the call should be added when it still is in "dialing" state.

How can I implement to be notified when a phone call is in "dialing" state?

Thanks