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:
Pierre-Yves Rivaille 2002-04-06 00:15:05 +00:00
parent de8a090b1b
commit 245f39e232
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2002-04-06 Pierre-Yves Rivaille <pyrivail@ens-lyon.fr>
* Source/NSOutlineView.m ([NSOutlineView -performDragOperation:]):
Fixed issue on drag'n'drop.
Fri Apr 5 00:13:41 2002 Nicola Pero <n.pero@mi.flashnet.it>
* TextConverters/RTF/GNUmakefile.preamble (ADDITIONAL_LIB_DIRS):

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;