* EOControl/EOClassDescription.m

([EOClassDescription +classDescriptionForClass:): Replaced
        deprecated GSObjCName() with GSNameFromClass().
        * EOControl/EOQualifier.m
        ([EOQualifier +qualifierWithQualifierFormat:varargList:]): Replaced
        deprecated GSObjCSelectorName() with GSNameFromSelector().


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@16769 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2003-05-22 14:06:35 +00:00
parent 90d4ace66b
commit b5fa995209
4 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,12 @@
2003-05-22 David Ayers <d.ayers@inode.at>
* EOControl/EOClassDescription.m
([EOClassDescription +classDescriptionForClass:): Replaced
deprecated GSObjCName() with GSNameFromClass().
* EOControl/EOQualifier.m
([EOQualifier +qualifierWithQualifierFormat:varargList:]): Replaced
deprecated GSObjCSelectorName() with GSNameFromSelector().
2003-05-20 David Ayers <d.ayers@inode.at>
* EOControl/EOFault.m ([EOFault respondsToSelector:]): Temporarily

View file

@ -303,7 +303,6 @@ RCS_ID("$Id$")
return sqlString;
}
+ (NSArray *)dropTableStatementsForEntityGroup:(NSArray *)entityGroup
{
// We redefine this method to add the CASCADE: it is needed to delete

View file

@ -154,7 +154,7 @@ static id classDelegate = nil;
NSDebugMLLog(@"gsdb", @"aClass=%@", aClass);
NSAssert(aClass, @"No class");
NSDebugMLLog(@"gsdb", @"class name=%s", GSObjCName(aClass));
NSDebugMLLog(@"gsdb", @"class name=%s", GSNameFromClass(aClass));
classDescription = NSMapGet(classDescriptionForClass, aClass);

View file

@ -497,7 +497,7 @@ static Class whichQualifier(const char **cFormat, const char **s)
EOFLOGObjectLevelArgs(@"EOQualifier",
@"leftKey=%@ operatorSelector=%s rightKey=%@ class=%@",
leftKey,
GSObjCSelectorName(operatorSelector),
GSNameFromSelector(operatorSelector),
rightKey,
isKeyValue?@"EOKeyValueQualifier":@"EOKeyComparisonQualifier");