Fixed missing release in -dealloc for _sortDescriptorPrototype ivar

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29108 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Quentin Mathe 2009-12-08 17:07:25 +00:00
parent 29d831a62f
commit ce7ea4a7c1
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2009-12-08 Quentin Mathe <quentin.mathe@gmail.com>
* Source/NSTableColumn.m (-dealloc): Fixed missing release for
_sortDescriptorPrototype ivar.
2009-12-08 Quentin Mathe <quentin.mathe@gmail.com>
* Headers/NSTableColumn.h:

View file

@ -116,6 +116,8 @@
_dataCell = [NSTextFieldCell new];
_headerToolTip = nil;
_sortDescriptorPrototype = nil;
ASSIGN (_identifier, anObject);
return self;
}
@ -125,6 +127,7 @@
RELEASE (_headerCell);
RELEASE (_headerToolTip);
RELEASE (_dataCell);
RELEASE (_sortDescriptorPrototype);
TEST_RELEASE (_identifier);
[super dealloc];
}