mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
3e1b4384db
commit
eeddf2fc07
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue