equal
deleted
inserted
replaced
105 iTransferTarget = KNullDesC; |
105 iTransferTarget = KNullDesC; |
106 iDtmfPostFix = KNullDesC; |
106 iDtmfPostFix = KNullDesC; |
107 iForwardAddressChoices = NULL; |
107 iForwardAddressChoices = NULL; |
108 iCallIndex = KPEInvalidCallIndex; |
108 iCallIndex = KPEInvalidCallIndex; |
109 iProtocolError = KErrNotFound; |
109 iProtocolError = KErrNotFound; |
|
110 iIncomingCallForwarded = EFalse; |
110 } |
111 } |
111 |
112 |
112 // --------------------------------------------------------------------------- |
113 // --------------------------------------------------------------------------- |
113 // Returns the client information of the call. |
114 // Returns the client information of the call. |
114 // --------------------------------------------------------------------------- |
115 // --------------------------------------------------------------------------- |
667 TInt CPECallInfo::ProtocolError() const |
668 TInt CPECallInfo::ProtocolError() const |
668 { |
669 { |
669 return iProtocolError; |
670 return iProtocolError; |
670 } |
671 } |
671 |
672 |
|
673 // ----------------------------------------------------------------------------- |
|
674 // CPECallInfo::SetIncomingCallForwarded |
|
675 // ----------------------------------------------------------------------------- |
|
676 // |
|
677 void CPECallInfo::SetIncomingCallForwarded( TBool aForwarded ) |
|
678 { |
|
679 iIncomingCallForwarded = aForwarded; |
|
680 } |
|
681 |
|
682 // ----------------------------------------------------------------------------- |
|
683 // CPECallInfo::IncomingCallForwarded |
|
684 // ----------------------------------------------------------------------------- |
|
685 // |
|
686 TBool CPECallInfo::IncomingCallForwarded() const |
|
687 { |
|
688 return iIncomingCallForwarded; |
|
689 } |
|
690 |
672 // End of File |
691 // End of File |