From b8847963e3ce7cad3ba3160aeccda818b02efec6 Mon Sep 17 00:00:00 2001 From: Christopher Lloyd Date: Tue, 14 Apr 2009 01:48:05 +0000 Subject: [PATCH] fix CoreData's use of ObjCSelector.h --- CoreData/CoreData.xcodeproj/project.pbxproj | 4 ++-- CoreData/NSEntityDescription.m | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CoreData/CoreData.xcodeproj/project.pbxproj b/CoreData/CoreData.xcodeproj/project.pbxproj index 644c7d3e..9aa233ca 100644 --- a/CoreData/CoreData.xcodeproj/project.pbxproj +++ b/CoreData/CoreData.xcodeproj/project.pbxproj @@ -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 */ diff --git a/CoreData/NSEntityDescription.m b/CoreData/NSEntityDescription.m index fd1d4306..2f92b7cc 100644 --- a/CoreData/NSEntityDescription.m +++ b/CoreData/NSEntityDescription.m @@ -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 -#import #import #import #import @@ -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]; }