Changeset 3740
- Timestamp:
- 09/25/07 01:35:09 (1 year ago)
- Files:
-
- trunk/Panels/JVChatRoomPanel.m (modified) (2 diffs)
- trunk/Panels/JVDirectChatPanel.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Panels/JVChatRoomPanel.m
r3694 r3740 46 46 _preferredTabCompleteNicknames = [[NSMutableArray allocWithZone:nil] initWithCapacity:10]; 47 47 _nextMessageAlertMembers = [[NSMutableSet allocWithZone:nil] initWithCapacity:5]; 48 _cantSendMessages = YES; 48 49 _kickedFromRoom = NO; 49 50 _keepAfterPart = NO; … … 741 742 - (void) _didConnect:(NSNotification *) notification { 742 743 if( ! _disposed ) [[self target] join]; 743 _cantSendMessages = YES;744 744 } 745 745 trunk/Panels/JVDirectChatPanel.m
r3718 r3740 1599 1599 - (void) _didConnect:(NSNotification *) notification { 1600 1600 [self addEventMessageToDisplay:NSLocalizedString( @"You reconnected to the server.", "reconnected to server status message" ) withName:@"reconnected" andAttributes:nil]; 1601 _cantSendMessages = NO; 1601 if( [self isMemberOfClass:[JVDirectChatPanel class]] ) 1602 _cantSendMessages = NO; 1602 1603 } 1603 1604
