Changeset 4328
- Timestamp:
- 06/13/06 01:36:41 (2 years ago)
- Files:
-
- WiredClient/trunk/English.lproj/ReleaseNotes.rtf (modified) (1 diff)
- WiredClient/trunk/WCChat.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/English.lproj/ReleaseNotes.rtf
r4273 r4328 41 41 - Fix disabled buttons in private chat topic dialog\ 42 42 - Fix a queueing problem where a second download transfer would be started when an upload transfer finished\ 43 - Fix a problem where the window layout was not saved when quitting the application 43 - Fix a problem where the window layout was not saved when quitting the application\ 44 - Fix a bug where completing a nick when there were multiple users with that nick would not append the completion string 44 45 \f0\b \cf2 \ 45 46 \ WiredClient/trunk/WCChat.m
r4186 r4328 529 529 while((match = [setEnumerator nextObject])) { 530 530 if([match rangeOfString:string options:NSCaseInsensitiveSearch].location == 0) { 531 if(matches == 0) 531 if(matches == 0) { 532 532 prefix = match; 533 else 533 matches = 1; 534 } else { 534 535 prefix = [prefix commonPrefixWithString:match options:NSCaseInsensitiveSearch]; 535 536 537 if([prefix length] < [match length]) 538 matches++; 539 } 540 536 541 matchingSet = set; 537 matches++;538 542 } 539 543 }
