mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
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:
parent
29d831a62f
commit
ce7ea4a7c1
2 changed files with 8 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue