messagingfw/msgsrvnstore/server/src/MCLENTRY.CPP
branchRCL_3
changeset 18 b9e74fff3740
parent 0 8e480a14352b
child 21 e5b3a2155e1a
equal deleted inserted replaced
16:b9bc42ac264b 18:b9e74fff3740
  2724 //
  2724 //
  2725 // Returns true if all the entries are children
  2725 // Returns true if all the entries are children
  2726 //
  2726 //
  2727 	{
  2727 	{
  2728 	TInt count = aSelection.Count();
  2728 	TInt count = aSelection.Count();
  2729 	while (count--)
  2729 	if(!count)
  2730 		{
  2730 	    {
  2731 		if (!IsAChild(aSelection.At(count)))
  2731         return EFalse;
  2732 			{
  2732 	    }
  2733 			return EFalse;
  2733 	else
  2734 			}
  2734 	    {
  2735 		}
  2735         while (count--)
       
  2736             {
       
  2737             if (!IsAChild(aSelection.At(count)))
       
  2738                 {
       
  2739                 return EFalse;
       
  2740                 }
       
  2741             }
       
  2742 	    }
  2736 	return ETrue;
  2743 	return ETrue;
  2737 	}
  2744 	}
  2738 
  2745 
  2739 
  2746 
  2740 EXPORT_C TBool CMsvEntry::HasStoreL() const
  2747 EXPORT_C TBool CMsvEntry::HasStoreL() const