Hey!
I have a strange problem using CTelephony:
I make a call using CTelephony:ialNewCall
The call is made, but no popup with the number and status is show (I am reffering to the one that is show in case of manually making a call)
After the call ends, the RunL is called, and the status is -2 (KErrGeneral).
Any hints?
void CCallDialer::ConstructL(const TDesC& aNumber)
{
iTelephony = CTelephony::NewL();
CTelephony::TTelNumber telNumber(aNumber);
iCallParams.iIdRestrict = CTelephony::ESendMyId;
iTelephony->DialNewCall(iStatus, iCallParamsPckg, telNumber, iCallId);
SetActive();
}
void CCallDialer::RunL()
{
iObserver.CallDialedL(iStatus.Int());
}
CallDialedL is called with -2.....
This means applications can make, so called, silent calls? Without the user can see it?
If yes, it can has some very strange effects, like calling to numbers with special costs.....
I am missing something?
Br,
Gr3go
LE: i am testing on e52...

ialNewCall
Reply With Quote

