mmshplugins/mmshaoplugin/tsrc/ut_aoplugin/src/muscommonstubs.cpp
branchRCL_3
changeset 22 73a1feb507fb
parent 0 f0cf47e981f9
child 23 bc78a40cd63c
equal deleted inserted replaced
21:33a5d2bbf6fc 22:73a1feb507fb
    12 * Contributors:
    12 * Contributors:
    13 *
    13 *
    14 * Description:  
    14 * Description:  
    15 *
    15 *
    16 */
    16 */
    17 
       
    18 
    17 
    19 
    18 
    20 #include "muscommonstubs.h"
    19 #include "muscommonstubs.h"
    21 
    20 
    22 
    21 
    50  
    49  
    51 // -----------------------------------------------------------------------------
    50 // -----------------------------------------------------------------------------
    52 // 
    51 // 
    53 // -----------------------------------------------------------------------------
    52 // -----------------------------------------------------------------------------
    54 //	
    53 //	
    55 void CMusCommonObserverStub::CallConnectedL( const TDesC& aTelNumber )
    54 void CMusCommonObserverStub::CallConnectedL( const TDesC& aTelNumber,
       
    55 											 TBool aIsSipUri )
    56     {
    56     {
    57     delete iTelNumber;
    57     delete iTelNumber;
       
    58     iTelNumber = NULL;
    58     iTelNumber = aTelNumber.AllocL();
    59     iTelNumber = aTelNumber.AllocL();
    59     iCallConnectedCalled = ETrue;
    60     iCallConnectedCalled = ETrue;
       
    61     iIsSipUri = aIsSipUri;
    60     }
    62     }
    61 
    63 
    62 
    64 
    63 // -----------------------------------------------------------------------------
    65 // -----------------------------------------------------------------------------
    64 // 
    66 // 
    65 // -----------------------------------------------------------------------------
    67 // -----------------------------------------------------------------------------
    66 //	    
    68 //	    
    67 void CMusCommonObserverStub::CallHoldL( const TDesC& aTelNumber )
    69 void CMusCommonObserverStub::CallHoldL( const TDesC& aTelNumber,
       
    70 										TBool aIsSipUri )
    68     {
    71     {
    69     delete iTelNumber;
    72     delete iTelNumber;
       
    73     iTelNumber = NULL;
    70     iTelNumber = aTelNumber.AllocL();
    74     iTelNumber = aTelNumber.AllocL();
    71     iCallHoldCalled = ETrue;
    75     iCallHoldCalled = ETrue;
       
    76     iIsSipUri = aIsSipUri;
    72     }
    77     }
    73     
    78     
    74 
    79 
    75 // -----------------------------------------------------------------------------
    80 // -----------------------------------------------------------------------------
    76 // 
    81 //