- Timestamp:
- 04/19/09 17:42:09 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/CoreData/SapphireFrappliance/FRAppliance/main_helper.m
r802 r820 24 24 25 25 @interface NSObject (SapphireApplianceControllerAPI) 26 - (NSManagedObjectContext *)newManagedObjectContextForFile:(NSString *)storeFile options:(NSDictionary *)storeOptions;26 + (NSManagedObjectContext *)newManagedObjectContextForFile:(NSString *)storeFile; 27 27 @end 28 28 … … 56 56 57 57 NSDictionary *storeOptions = [[NSDictionary alloc] initWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSReadOnlyPersistentStoreOption, nil]; 58 NSManagedObjectContext *moc = [NSClassFromString(@"SapphireApplianceController") newManagedObjectContextForFile:nil options:storeOptions];58 NSManagedObjectContext *moc = [NSClassFromString(@"SapphireApplianceController") newManagedObjectContextForFile:nil]; 59 59 [storeOptions release]; 60 60 if(moc == nil)
