Source/NSOutlineView.m

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13365 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
pyr 2002-04-06 00:15:05 +00:00
parent 9dac6fe2dd
commit 5a2cd3ccdd
2 changed files with 9 additions and 4 deletions

View file

@ -1441,7 +1441,7 @@ static NSImage *unexpandable = nil;
NSLog(@"performDragOperation");
if ([_dataSource
respondsToSelector:
@selector(outlineView:validateDrop:proposedItem:proposedChildIndex:)])
@selector(outlineView:acceptDrop:proposedItem:proposedChildIndex:)])
{
id item;
int childIndex;
@ -1470,9 +1470,9 @@ static NSImage *unexpandable = nil;
return [_dataSource
outlineView: self
validateDrop: sender
proposedItem: item
proposedChildIndex: childIndex];
acceptDrop: sender
proposedItem: item
proposedChildIndex: childIndex];
}
else
return NO;