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:
Steve Checkoway
2004-09-11 16:12:24 +00:00
parent f81e2c908f
commit fa11d32c39
+8 -4
View File
@@ -6,14 +6,18 @@
// Copyright (c) 2003 Steve Checkoway. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
@interface Helper : NSObject
{
NSString *mPath;
}
- (id) initWithPath:(NSString *)path;
- (void)dealloc;
- (void)startHelper:(id)caller;
- (id) initWithPath:(NSString *)path;
- (void) dealloc;
- (void) startHelper:(id)caller;
@end
@interface NSOpenPanel (SCCanCreateDirectories)
- (void) setCanCreateDirectories:(BOOL)b;
@end