Garbage collection updates

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4510 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-07-03 19:59:44 +00:00
parent ee8a964960
commit 006286ee6a
22 changed files with 869 additions and 707 deletions

View file

@ -45,7 +45,7 @@
{
NSDateFormatter *other = (id)NSCopyObject(self, 0, zone);
[other->dateFormat retain];
RETAIN(other->dateFormat);
return other;
}
@ -54,6 +54,12 @@
return dateFormat;
}
- (void) dealloc
{
RELEASE(dateFormat);
[super dealloc];
}
- (NSString*) editingStringForObjectValue: (id)anObject
{
return [self stringForObjectValue: anObject];