mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
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:
parent
ee8a964960
commit
006286ee6a
22 changed files with 869 additions and 707 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue