Fix memory leak in GSComboWindow.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@36744 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Germán Arias 2013-06-22 22:47:35 +00:00
parent dc0ac1b635
commit f2a56be6f5
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2013-06-22 German A. Arias <german@xelalug.org>
* Source/NSComboBoxCell.m (-initWithContentRect:...):
Fix memory leak in GSComboWindow.
2013-06-20 German A. Arias <german@xelalug.org>
* Source/GNUmakefile: Remove GSAutocompleteWindow.h, isn't

View file

@ -184,6 +184,7 @@ static GSComboWindow *gsWindow = nil;
borderRect.size.height)];
[scrollView setHasVerticalScroller: YES];
[scrollView setDocumentView: _tableView];
[_tableView release];
[box setContentView: scrollView];
RELEASE(scrollView);