mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 15:40:37 +00:00
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:
parent
9dac6fe2dd
commit
5a2cd3ccdd
2 changed files with 9 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue