Changeset 25580
- Timestamp:
- 11/13/2008 09:50:52 PM (2 months ago)
- Files:
-
- trunk/Source/AIApplication.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/AIApplication.m
r25435 r25580 71 71 return chatWindows; 72 72 } 73 - (AIMessageWindow *)valueInChatWindowsWithUniqueID:(NSNumber *)uniqueID 74 { 75 for (NSWindow *window in [self orderedWindows]) 76 if ([window isKindOfClass:[AIMessageWindow class]]) 77 if ([window hash] == [uniqueID unsignedIntValue]) 78 return (AIMessageWindow *)window; 79 return nil; 80 } 73 81 - (NSArray *)chats 74 82 {