version 3.2 test build
[TestXSLT.git] / NSApplicationScriptingCategory.m
1 //
2 //  NSApplicationScriptingCategory.m
3 //  AETest
4 //
5 //  Created by Marc Liyanage on Thu Jul 04 2002.
6 //  Copyright (c) 2002 __MyCompanyName__. All rights reserved.
7 //
8 // $Id$
9
10
11 #import "NSApplicationScriptingCategory.h"
12
13
14 @implementation NSApplication(Scripting)
15
16 - (id)handleCreateScriptCommand:(NSScriptCommand*)command
17 {
18 //      NSLog(@"Create...");
19
20         [[NSDocumentController sharedDocumentController] newDocument:nil];
21
22         return nil;
23 }
24
25 @end