engine/src/ConnectionEngine.cpp
branchRCL_3
changeset 368 b131f7696342
parent 310 2e0299e13cbf
equal deleted inserted replaced
367:4b75876aa85a 368:b131f7696342
   307 
   307 
   308 void CConnectionEngine::ReportConnectionL(TInt aError)
   308 void CConnectionEngine::ReportConnectionL(TInt aError)
   309 	{
   309 	{
   310 	DP1("CConnectionEngine::ReportConnectionL, aError=%d", aError);
   310 	DP1("CConnectionEngine::ReportConnectionL, aError=%d", aError);
   311 	TInt noObservers = iObserverArray.Count();
   311 	TInt noObservers = iObserverArray.Count();
   312 	DP1("    noObservers=%d", noObservers);
       
   313 	while(noObservers)
   312 	while(noObservers)
   314 		{
   313 		{
   315 		noObservers--;
   314 		noObservers--;
   316 		DP("    calling callback");
       
   317 		iObserverArray[noObservers]->ConnectCompleteL(aError);
   315 		iObserverArray[noObservers]->ConnectCompleteL(aError);
   318 		}
   316 		}
   319 	}
   317 	}
   320 
   318 
   321 
   319