blob: ceb3f8b3e28068d11216d20a6d488b87ebe0137d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// 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
|