Memory leak and other fixes from Frith-MacDonald.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2775 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 1998-03-12 14:21:20 +00:00
parent dc21fde8ae
commit 877756ca0e
17 changed files with 11155 additions and 10927 deletions

View file

@ -260,6 +260,18 @@
return self=[[NSUShortNumber alloc] initValue:&value withObjCType:NULL];
}
- (id) copy
{
[self subclassResponsibility:_cmd];
return nil;
}
- copyWithZone: (NSZone*)zone
{
[self subclassResponsibility:_cmd];
return nil;
}
- (NSString*) description
{
return [self descriptionWithLocale: nil];