Changeset 3630
- Timestamp:
- 03/18/07 18:59:29 (2 years ago)
- Files:
-
- trunk/Chat Core/MVIRCChatConnection.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Chat Core/MVIRCChatConnection.m
r3629 r3630 2114 2114 NSMutableData *topic = [[topicInfo objectForKey:@"topic"] mutableCopyWithZone:nil]; 2115 2115 2116 NSMethodSignature *signature = [NSMethodSignature methodSignatureWithReturnAndArgumentTypes:@encode( void ), @encode( NSMutableData * ), @encode( MVChatRoom * ), @encode( MVChatUser ), nil];2116 NSMethodSignature *signature = [NSMethodSignature methodSignatureWithReturnAndArgumentTypes:@encode( void ), @encode( NSMutableData * ), @encode( MVChatRoom * ), @encode( MVChatUser * ), nil]; 2117 2117 NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:signature]; 2118 2118 [invocation setSelector:@selector( processTopicAsData:inRoom:author: )]; … … 2127 2127 [room _setTopicDate:[NSDate date]]; 2128 2128 [[NSNotificationCenter defaultCenter] postNotificationOnMainThreadWithName:MVChatRoomTopicChangedNotification object:room userInfo:nil]; 2129 2130 [topic release]; 2129 2131 } 2130 2132
