git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21369 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-06-27 08:46:08 +00:00
parent 88792e906b
commit 0b3c0a67e4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-06-27 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSKeyedArchiver.m: Fix typo ... superClass should be
superclass
2005-06-25 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSHTTPURLHandle.m:

View file

@ -362,7 +362,7 @@ static NSDictionary *makeReference(unsigned ref)
hierarchy = [NSMutableArray new];
while (c != 0)
{
Class next = [c superClass];
Class next = [c superclass];
[hierarchy addObject: NSStringFromClass(c)];
if (next == c)