Minor tidyup

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-09-10 08:34:24 +00:00
parent 3e1b4384db
commit eeddf2fc07
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-09-10 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSObject.m: Tidy use of GSObjCRuntime a little.
2003-09-10 Pete French <pete@twisted.org.uk>
* Source/Additions/Unicode.m: patch to use UTF16 rather than

View file

@ -1192,7 +1192,7 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
*/
- (Class) superclass
{
return object_get_super_class (self);
return GSObjCSuper(GSObjCClass(self));
}
/**
@ -2126,7 +2126,7 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
- (BOOL) isClass
{
return GSObjCIsClass(self);
return GSObjCIsClass((Class)self);
}
- (BOOL) isInstance