From fa11d32c39cfb45ea59d9ceede8aa20787951a90 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 11 Sep 2004 16:12:24 +0000 Subject: [PATCH] Fix warning. I have no idea why this works. I am declaring a category but not implementing the methods declared within. --- stepmania/PBProject/Installer/Helper.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/stepmania/PBProject/Installer/Helper.h b/stepmania/PBProject/Installer/Helper.h index e25efc2b1e..f43c856ea7 100644 --- a/stepmania/PBProject/Installer/Helper.h +++ b/stepmania/PBProject/Installer/Helper.h @@ -6,14 +6,18 @@ // Copyright (c) 2003 Steve Checkoway. All rights reserved. // -#import +#import @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