fix CoreData's use of ObjCSelector.h

This commit is contained in:
Christopher Lloyd 2009-04-14 01:48:05 +00:00
parent df830c8f4a
commit b8847963e3
2 changed files with 3 additions and 4 deletions

View File

@ -99,14 +99,14 @@
isa = PBXContainerItemProxy;
containerPortal = E2F48FA10DC80FAE00310CCE /* AppKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = C889770C0EA0BF3100D0A0A2 /* AppKit.framework */;
remoteGlobalIDString = C889770C0EA0BF3100D0A0A2;
remoteInfo = "AppKit-Linux-i386";
};
FE6E110E0F4F8F6600C65544 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = E2F48FA10DC80FAE00310CCE /* AppKit.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = C8A2E5730F07EA1F0054397C /* AppKit.framework */;
remoteGlobalIDString = C8A2E5730F07EA1F0054397C;
remoteInfo = "AppKit-Darwin-i386";
};
/* End PBXContainerItemProxy section */

View File

@ -14,7 +14,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
#import "NSRelationshipDescription.h"
#import "NSManagedObject.h"
#import <AppKit/NSNibKeyedUnarchiver.h>
#import <Foundation/ObjCSelector.h>
#import <objc/objc-class.h>
#import <ctype.h>
#import <string.h>
@ -154,7 +153,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
+ (id) _selectorKey: (SEL) selector {
return [NSNumber numberWithInteger: (NSInteger) OBJCSelectorUniqueId(selector)];
return [NSNumber numberWithInteger: (NSInteger) selector];
}