connectivitymodules/SeCon/cntparser/src/cntparserserverexe.cpp
changeset 40 b63e67867dcd
parent 19 2691f6aa1921
equal deleted inserted replaced
39:9905f7d46607 40:b63e67867dcd
   259 //------------------------------------------------------------
   259 //------------------------------------------------------------
   260 void CCntParserServer::CompletePhoneBookRequests(TInt aErr)	//Goes through all the sessions and completes the request
   260 void CCntParserServer::CompletePhoneBookRequests(TInt aErr)	//Goes through all the sessions and completes the request
   261 	{
   261 	{
   262 	LOGGER_WRITE( "CntParserServer: Complete phonebook request" );
   262 	LOGGER_WRITE( "CntParserServer: Complete phonebook request" );
   263 	iSessionIter.SetToFirst();
   263 	iSessionIter.SetToFirst();
   264 	while( iSessionIter!=NULL )	//Go through all sessions
   264 	while( iSessionIter )	//Go through all sessions
   265 		{
   265 		{
   266 		( (CCntParserServerSession*) (iSessionIter++) )->CompletePhoneBookRequest( aErr );
   266 		( (CCntParserServerSession*) (iSessionIter++) )->CompletePhoneBookRequest( aErr );
   267 		}
   267 		}
   268 	iRequests = 0;	//Collector is ready to start again..
   268 	iRequests = 0;	//Collector is ready to start again..
   269 	}
   269 	}