Changeset 1410

Show
Ignore:
Timestamp:
08/02/04 22:35:44 (4 years ago)
Author:
morris
Message:

rename methods to avoid clash with ignore system

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredClient/trunk/WCPublicChat.m

    r1408 r1410  
    1 /* $Id: WCPublicChat.m,v 1.34 2004/08/02 17:15:03 morris Exp $ */ 
     1/* $Id: WCPublicChat.m,v 1.35 2004/08/02 20:35:44 morris Exp $ */ 
    22 
    33/* 
     
    255255                                        [control setTag:[cid intValue]]; 
    256256                                        [control setTarget:self]; 
    257                                         [control setAction:@selector(join:)]; 
     257                                        [control setAction:@selector(joinChat:)]; 
    258258                                        break; 
    259259 
    260260                                case 1: 
    261261                                        [control setTarget:self]; 
    262                                         [control setAction:@selector(ignore:)]; 
     262                                        [control setAction:@selector(ignoreChat:)]; 
    263263                                        break; 
    264264 
    265265                                case 2: 
    266266                                        [control setTarget:self]; 
    267                                         [control setAction:@selector(decline:)]; 
     267                                        [control setAction:@selector(declineChat:)]; 
    268268                                        break; 
    269269                        } 
     
    516516 
    517517 
    518 - (IBAction)join:(id)sender { 
     518- (IBAction)joinChat:(id)sender { 
    519519        // --- create private chat 
    520520        [[WCPrivateChat alloc] initWithConnection:_connection inviteUser:0]; 
     
    538538 
    539539 
    540 - (IBAction)decline:(id)sender { 
     540- (IBAction)declineChat:(id)sender { 
    541541        // --- send the decline command 
    542542        [_connection sendCommand:WCDeclineCommand 
     
    552552 
    553553 
    554 - (IBAction)ignore:(id)sender { 
     554- (IBAction)ignoreChat:(id)sender { 
    555555        // --- close panel 
    556556        [[sender window] orderOut:self];