Corrected bug in NSOutlineView

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@19665 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2004-07-01 18:46:42 +00:00
parent 95a20b1b16
commit 70fd89a472
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2004-07-01 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSOutlineView.m (-reloadItem:reloadChildren:): Convert
possible NSNull key to nil.
2004-06-28 Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/Additions/GNUstepGUI/GSNibTemplates.h: Updated the

View file

@ -611,6 +611,7 @@ static NSImage *unexpandable = nil;
if ((index = [childArray indexOfObject: object]) != NSNotFound)
{
parent = (parent == [NSNull null])?nil:parent;
dsobj = [_dataSource outlineView: self
child: index
ofItem: parent];