aboutsummaryrefslogtreecommitdiffstats
path: root/misc/osxfe/ioquake3fe/ErrorWindowController.m
blob: 40bd29608e7c41028259f3a514c07c6b5a5fe36f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  ErrorWindowController.m
//  ioquake3fe
//
//  Created by Ben Wilber on 3/11/09.
//  Copyright 2009 __MyCompanyName__. All rights reserved.
//

#import "ErrorWindowController.h"

@implementation ErrorWindowController

// yes, a whole class just so the fucking app will quit

- (BOOL)windowShouldClose:(id)sender
{
	[NSApp terminate:self];
	return YES;
}

@end