Changeset 24101
- Timestamp:
- 06/29/2008 05:10:22 PM (5 months ago)
- Files:
-
- trunk/Source/AIContactController.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/AIContactController.m
r24099 r24101 958 958 AIMetaContact *metaContact = nil; 959 959 int count = [UIDsArray count]; 960 int i; 961 962 //Build an array of all contacts matching this description (multiple accounts on the same service listing 963 //the same UID mean that we can have multiple AIListContact objects with a UID/service combination) 964 for (i = 0; i < count; i++) { 960 961 for (int i = 0; i < count; i++) { 965 962 if ((metaContact = [contactToMetaContactLookupDict objectForKey:[AIListObject internalObjectIDForServiceID:[servicesArray objectAtIndex:i] 966 963 UID:[UIDsArray objectAtIndex:i]]])) { … … 994 991 int i; 995 992 996 //Build an array of all contacts matching this description (multiple accounts on the same service listing 997 //the same UID mean that we can have multiple AIListContact objects with a UID/service combination) 993 /* Build an array of all contacts matching this description (multiple accounts on the same service listing 994 * the same UID mean that we can have multiple AIListContact objects with a UID/service combination) 995 */ 998 996 for (i = 0; i < count; i++) { 999 997 NSString *serviceID = [servicesArray objectAtIndex:i];