checkin of last changes for 2.9, mostly docs
[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