projects
/
TestXSLT.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
version 3.2 test build
[TestXSLT.git]
/
UnsavedChangesPanelController.m
1
#import "UnsavedChangesPanelController.h"
2
3
@implementation UnsavedChangesPanelController
4
5
- (IBAction)discardUnsavedChanges:(id)sender
6
{
7
keepChanges = FALSE;
8
[NSApp stopModal];
9
}
10
11
- (IBAction)keepUnsavedChanges:(id)sender
12
{
13
keepChanges = TRUE;
14
[NSApp stopModal];
15
}
16
17
- (BOOL)keepChanges
18
{
19
return keepChanges;
20
}
21
22
@end