Changeset 1410
- Timestamp:
- 08/02/04 22:35:44 (4 years ago)
- Files:
-
- WiredClient/trunk/WCPublicChat.m (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCPublicChat.m
r1408 r1410 1 /* $Id: WCPublicChat.m,v 1.3 4 2004/08/02 17:15:03morris Exp $ */1 /* $Id: WCPublicChat.m,v 1.35 2004/08/02 20:35:44 morris Exp $ */ 2 2 3 3 /* … … 255 255 [control setTag:[cid intValue]]; 256 256 [control setTarget:self]; 257 [control setAction:@selector(join :)];257 [control setAction:@selector(joinChat:)]; 258 258 break; 259 259 260 260 case 1: 261 261 [control setTarget:self]; 262 [control setAction:@selector(ignore :)];262 [control setAction:@selector(ignoreChat:)]; 263 263 break; 264 264 265 265 case 2: 266 266 [control setTarget:self]; 267 [control setAction:@selector(decline :)];267 [control setAction:@selector(declineChat:)]; 268 268 break; 269 269 } … … 516 516 517 517 518 - (IBAction)join :(id)sender {518 - (IBAction)joinChat:(id)sender { 519 519 // --- create private chat 520 520 [[WCPrivateChat alloc] initWithConnection:_connection inviteUser:0]; … … 538 538 539 539 540 - (IBAction)decline :(id)sender {540 - (IBAction)declineChat:(id)sender { 541 541 // --- send the decline command 542 542 [_connection sendCommand:WCDeclineCommand … … 552 552 553 553 554 - (IBAction)ignore :(id)sender {554 - (IBAction)ignoreChat:(id)sender { 555 555 // --- close panel 556 556 [[sender window] orderOut:self];
