Fix warning. I have no idea why this works. I am declaring a category but not implementing the methods declared within.
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
// Copyright (c) 2003 Steve Checkoway. All rights reserved.
|
// Copyright (c) 2003 Steve Checkoway. All rights reserved.
|
||||||
//
|
//
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Cocoa/Cocoa.h>
|
||||||
|
|
||||||
|
|
||||||
@interface Helper : NSObject
|
@interface Helper : NSObject
|
||||||
@@ -14,6 +14,10 @@
|
|||||||
NSString *mPath;
|
NSString *mPath;
|
||||||
}
|
}
|
||||||
- (id) initWithPath:(NSString *)path;
|
- (id) initWithPath:(NSString *)path;
|
||||||
- (void)dealloc;
|
- (void) dealloc;
|
||||||
- (void)startHelper:(id)caller;
|
- (void) startHelper:(id)caller;
|
||||||
|
@end
|
||||||
|
|
||||||
|
@interface NSOpenPanel (SCCanCreateDirectories)
|
||||||
|
- (void) setCanCreateDirectories:(BOOL)b;
|
||||||
@end
|
@end
|
||||||
|
|||||||
Reference in New Issue
Block a user