Changeset 3590
- Timestamp:
- 02/26/07 07:27:02 (2 years ago)
- Files:
-
- trunk/Chat Core/MVChatRoom.m (modified) (1 diff)
- trunk/Chat Core/MVChatUser.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Chat Core/MVChatRoom.m
r3589 r3590 229 229 230 230 - (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding asAction:(BOOL) action { 231 [self sendMessage:message withEncoding:encoding withAttributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:action] forKey:@"action"]];231 [self sendMessage:message withEncoding:encoding withAttributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:action] forKey:@"action"]]; 232 232 } 233 233 234 234 - (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding withAttributes:(NSDictionary *) attributes { 235 // subclass this method, don't call super235 // subclass this method, don't call super 236 236 [self doesNotRecognizeSelector:_cmd]; 237 237 } trunk/Chat Core/MVChatUser.m
r3589 r3590 422 422 423 423 - (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding asAction:(BOOL) action { 424 [self sendMessage:message withEncoding:encoding withAttributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:action] forKey:@"action"]];424 [self sendMessage:message withEncoding:encoding withAttributes:[NSDictionary dictionaryWithObject:[NSNumber numberWithBool:action] forKey:@"action"]]; 425 425 } 426 426 427 427 - (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding withAttributes:(NSDictionary *) attributes { 428 // subclass this method, don't call super428 // subclass this method, don't call super 429 429 [self doesNotRecognizeSelector:_cmd]; 430 430 }
