diff -r a5ac35ca6d81 -r 91f50911ea81 multimediacommsengine/mmcesrv/mmceserver/tsrc/ut_server/stubs/src/sipprofileregistrybase.cpp --- a/multimediacommsengine/mmcesrv/mmceserver/tsrc/ut_server/stubs/src/sipprofileregistrybase.cpp Tue May 11 16:34:40 2010 +0300 +++ b/multimediacommsengine/mmcesrv/mmceserver/tsrc/ut_server/stubs/src/sipprofileregistrybase.cpp Tue May 25 13:07:26 2010 +0300 @@ -52,9 +52,13 @@ // stubs CSIPProfileRegistry* reg = (CSIPProfileRegistry*) this; CSIPProfile* profile = CSIPProfile::NewLC(reg); + CSIPProfile* profile2 = CSIPProfile::NewLC(reg); + profile2->SetContextId(2); aProfiles.AppendL ( profile ); + aProfiles.AppendL ( profile2 ); + CleanupStack::Pop( profile2 ); CleanupStack::Pop( profile ); @@ -72,8 +76,12 @@ CSIPProfileRegistry* reg = (CSIPProfileRegistry*) this; CSIPProfile* profile = CSIPProfile::NewLC( reg ); + CSIPProfile* profile2 = CSIPProfile::NewLC(reg); + profile2->SetContextId(2); aProfiles.AppendL ( profile ); + aProfiles.AppendL ( profile2 ); + CleanupStack::Pop( profile2 ); CleanupStack::Pop( profile ); }