Changeset 3590

Show
Ignore:
Timestamp:
02/26/07 07:27:02 (2 years ago)
Author:
timothy
Message:

Fixing some missing tabs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Chat Core/MVChatRoom.m

    r3589 r3590  
    229229 
    230230- (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"]]; 
    232232} 
    233233 
    234234- (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding withAttributes:(NSDictionary *) attributes { 
    235    // subclass this method, don't call super 
     235       // subclass this method, don't call super 
    236236        [self doesNotRecognizeSelector:_cmd]; 
    237237} 
  • trunk/Chat Core/MVChatUser.m

    r3589 r3590  
    422422 
    423423- (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"]]; 
    425425} 
    426426 
    427427- (void) sendMessage:(NSAttributedString *) message withEncoding:(NSStringEncoding) encoding withAttributes:(NSDictionary *) attributes { 
    428    // subclass this method, don't call super 
     428       // subclass this method, don't call super 
    429429        [self doesNotRecognizeSelector:_cmd]; 
    430430}