mobilemessaging/smsmtm/clientmtm/src/SMUTHDR.CPP
branchRCL_3
changeset 60 7fdbb852d323
parent 57 ebe688cedc25
equal deleted inserted replaced
57:ebe688cedc25 60:7fdbb852d323
  1003 			startPos = str1.Locate(',') ;
  1003 			startPos = str1.Locate(',') ;
  1004 			
  1004 			
  1005 			while(startPos != KErrNotFound )
  1005 			while(startPos != KErrNotFound )
  1006 				{
  1006 				{
  1007 				TPtrC16 str2 = str1.Left(startPos);
  1007 				TPtrC16 str2 = str1.Left(startPos);
  1008 				smsNumberData.AppendL(str2);
  1008 				smsNumberData.Append(str2);
  1009 				
  1009 				
  1010 				startPos++;
  1010 				startPos++;
  1011 				str1.Set(str1.Mid(startPos, str1.Length()- startPos));
  1011 				str1.Set(str1.Mid(startPos, str1.Length()- startPos));
  1012 			
  1012 			
  1013 				startPos = str1.Locate(',');
  1013 				startPos = str1.Locate(',');