mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-19 09:50:43 +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>
|
||||
|
||||
* 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)
|
||||
- (BOOL)initializeScripting;
|
||||
|
@ -37,5 +40,7 @@
|
|||
/* User interface */
|
||||
- (void)orderFrontScriptsPanel:(id)sender;
|
||||
- (void)orderFrontTranscriptWindow:(id)sender;
|
||||
- (NSMenu *) scriptingMenu;
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -30,17 +30,19 @@
|
|||
|
||||
*/
|
||||
|
||||
#include "STScriptingSupport.h"
|
||||
|
||||
#import <AppKit/NSApplication.h>
|
||||
#include <AppKit/NSApplication.h>
|
||||
|
||||
#import <Foundation/NSArray.h>
|
||||
#import <Foundation/NSBundle.h>
|
||||
#import <Foundation/NSEnumerator.h>
|
||||
#import <Foundation/NSFileManager.h>
|
||||
#import <Foundation/NSString.h>
|
||||
#include <Foundation/NSArray.h>
|
||||
#include <Foundation/NSBundle.h>
|
||||
#include <Foundation/NSEnumerator.h>
|
||||
#include <Foundation/NSFileManager.h>
|
||||
#include <Foundation/NSString.h>
|
||||
|
||||
@interface NSApplication (STPrivateMethods)
|
||||
- (BOOL)setUpApplicationScripting;
|
||||
- (NSBundle *) _applicationScriptingBundle;
|
||||
@end
|
||||
|
||||
@implementation NSApplication(STApplicationScriptingInit)
|
||||
|
|
Loading…
Reference in a new issue