checkin of last changes for 2.9, mostly docs
[TestXSLT.git] / AppDelegate.m
1 //
2 //  NSDocumentControllerNotificationCategory.m
3 //  TestXSLT
4 //
5 //  Created by Marc Liyanage on Sat Mar 29 2003.
6 //  Copyright (c) 2003 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "AppDelegate.h"
10
11 @implementation AppDelegate
12
13 - (void)applicationDidBecomeActive:(NSNotification *)aNotification {
14
15         /* no longer active, now using the windowDidBecomeMain method in the window delegate (MyDocument.m)
16          */
17
18         //      NSArray *documents = [[NSDocumentController sharedDocumentController] documents];
19 //      [documents makeObjectsPerformSelector:@selector(checkForExternalModifications)];
20         
21 }
22
23 @end