// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Project: The Cheat // // File: AboutBoxController.m // Created: Mon Nov 24 2003 // // Copyright: 2003 Chaz McGarvey. All rights reserved. // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #import "AboutBoxController.h" #include "cheat_shared.h" #import @implementation AboutBoxController - (id)init { return [super initWithWindowNibName:@"AboutBox"]; } - (void)windowDidLoad { [nameVersionText setStringValue:[NSString stringWithFormat:@"%@ %@", [CMUpdateCheck appName], [CMUpdateCheck appVersion]]]; [aboutWindow center]; } - (IBAction)launchWebsiteButton:(id)sender { LaunchWebsite(); } - (IBAction)launchEmailButton:(id)sender { LaunchEmail(); } @end