mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
changed import to include
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@16599 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f9cef3571f
commit
f764423832
3 changed files with 18 additions and 7 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003 May 1 Stefan Urbanek <urbanek@host.sk>
|
||||||
|
|
||||||
|
* Support: updated files to use #include instead of #import
|
||||||
|
|
||||||
2003 Apr 04 David Ayers <d.ayers@inode.at>
|
2003 Apr 04 David Ayers <d.ayers@inode.at>
|
||||||
|
|
||||||
* GNUmakefile: Added flags to be able to compile from the building
|
* GNUmakefile: Added flags to be able to compile from the building
|
||||||
|
|
|
@ -28,7 +28,10 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#import <AppKit/NSApplication.h>
|
#ifndef _STScriptingSupport_h
|
||||||
|
#define _STScriptingSupport_h
|
||||||
|
|
||||||
|
#include <AppKit/NSApplication.h>
|
||||||
|
|
||||||
@interface NSApplication(STApplicationScripting)
|
@interface NSApplication(STApplicationScripting)
|
||||||
- (BOOL)initializeScripting;
|
- (BOOL)initializeScripting;
|
||||||
|
@ -37,5 +40,7 @@
|
||||||
/* User interface */
|
/* User interface */
|
||||||
- (void)orderFrontScriptsPanel:(id)sender;
|
- (void)orderFrontScriptsPanel:(id)sender;
|
||||||
- (void)orderFrontTranscriptWindow:(id)sender;
|
- (void)orderFrontTranscriptWindow:(id)sender;
|
||||||
|
- (NSMenu *) scriptingMenu;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -30,17 +30,19 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "STScriptingSupport.h"
|
||||||
|
|
||||||
#import <AppKit/NSApplication.h>
|
#include <AppKit/NSApplication.h>
|
||||||
|
|
||||||
#import <Foundation/NSArray.h>
|
#include <Foundation/NSArray.h>
|
||||||
#import <Foundation/NSBundle.h>
|
#include <Foundation/NSBundle.h>
|
||||||
#import <Foundation/NSEnumerator.h>
|
#include <Foundation/NSEnumerator.h>
|
||||||
#import <Foundation/NSFileManager.h>
|
#include <Foundation/NSFileManager.h>
|
||||||
#import <Foundation/NSString.h>
|
#include <Foundation/NSString.h>
|
||||||
|
|
||||||
@interface NSApplication (STPrivateMethods)
|
@interface NSApplication (STPrivateMethods)
|
||||||
- (BOOL)setUpApplicationScripting;
|
- (BOOL)setUpApplicationScripting;
|
||||||
|
- (NSBundle *) _applicationScriptingBundle;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation NSApplication(STApplicationScriptingInit)
|
@implementation NSApplication(STApplicationScriptingInit)
|
||||||
|
|
Loading…
Reference in a new issue