Changeset 65
- Timestamp:
- 12/20/2002 11:11:42 AM (6 years ago)
- Files:
-
- trunk/adium/Plugins/AIM TOC2 Service/AIMTOC2Account.m (modified) (2 diffs)
- trunk/adium/Source/AIContactController.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/adium/Plugins/AIM TOC2 Service/AIMTOC2Account.m
r53 r65 883 883 NSString *value; 884 884 AIContactGroup *currentGroup = nil; 885 AIContactGroup *contactList;886 885 887 886 [[owner contactController] delayContactListUpdatesFor:10]; 888 889 //Get the root contact list group890 contactList = [[owner contactController] contactList];891 887 892 888 //Create a scanner … … 909 905 //Create the group 910 906 if(!(currentGroup = [[owner contactController] groupWithName:value])){ 911 currentGroup = [[owner contactController] createGroupNamed:value inGroup: contactList];907 currentGroup = [[owner contactController] createGroupNamed:value inGroup:nil]; 912 908 } 913 909 trunk/adium/Source/AIContactController.m
r47 r65 160 160 AIContactGroup *newGroup; 161 161 162 if(!inGroup) inGroup = [self contactList]; //If no group is specified, we create at the root level 163 162 164 //create the new group 163 165 newGroup = [AIContactGroup contactGroupWithName:inName];