blob: 249f1077205fed6a61c5658a6979d217f1a6423d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* HBExceptionAlertController.m $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import "HBExceptionAlertController.h"
@implementation HBExceptionAlertController
- (instancetype)init
{
return [self initWithWindowNibName:@"ExceptionAlert"];
}
- (NSInteger)runModal
{
return [NSApp runModalForWindow:self.window];
}
- (IBAction)btnCrashClicked:(id)sender
{
[self.window orderOut:nil];
[NSApp stopModalWithCode:HBExceptionAlertControllerResultCrash];
}
- (IBAction)btnContinueClicked:(id)sender
{
[self.window orderOut:nil];
[NSApp stopModalWithCode:HBExceptionAlertControllerResultContinue];
}
@end
|