mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 06:41:12 +00:00
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:
parent
95a20b1b16
commit
70fd89a472
2 changed files with 6 additions and 0 deletions
|
@ -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>
|
2004-06-28 Gregory John Casamento <greg_casamento@yahoo.com>
|
||||||
|
|
||||||
* Headers/Additions/GNUstepGUI/GSNibTemplates.h: Updated the
|
* Headers/Additions/GNUstepGUI/GSNibTemplates.h: Updated the
|
||||||
|
|
|
@ -611,6 +611,7 @@ static NSImage *unexpandable = nil;
|
||||||
|
|
||||||
if ((index = [childArray indexOfObject: object]) != NSNotFound)
|
if ((index = [childArray indexOfObject: object]) != NSNotFound)
|
||||||
{
|
{
|
||||||
|
parent = (parent == [NSNull null])?nil:parent;
|
||||||
dsobj = [_dataSource outlineView: self
|
dsobj = [_dataSource outlineView: self
|
||||||
child: index
|
child: index
|
||||||
ofItem: parent];
|
ofItem: parent];
|
||||||
|
|
Loading…
Reference in a new issue