Changeset 3598

Show
Ignore:
Timestamp:
03/04/07 12:15:51 (2 years ago)
Author:
jmmv
Message:

Fix a typo in the handling of MVChatConnectionProtocolError.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Controllers/JVChatController.m

    r3597 r3598  
    665665                NSAlert *alert = [[[NSAlert alloc] init] autorelease]; 
    666666                [alert setMessageText:[NSString stringWithFormat:NSLocalizedString( @"Chat protocol error", "malformed packet alert dialog title" )]]; 
    667                 [alert setInformativeText:[NSString stringWithFormat:NSLocalizedString( @"Client got a malformed packet: %@", "malformd packet alert dialog message" ), reason]]; 
     667                [alert setInformativeText:[NSString stringWithFormat:NSLocalizedString( @"Client got a malformed packet: %@", "malformed packet alert dialog message" ), reason]]; 
    668668                [alert setAlertStyle:NSInformationalAlertStyle]; 
    669669                [alert runModal];