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:
qmathe 2009-12-08 17:07:25 +00:00
parent 338b54de3c
commit 30108b6069
2 changed files with 8 additions and 0 deletions

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];
}