mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 21:00:44 +00:00
* 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:
parent
fa68770b33
commit
7218919f2d
4 changed files with 11 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
Loading…
Reference in a new issue