mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:10:47 +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
|
@ -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>
|
Fri Apr 5 00:13:41 2002 Nicola Pero <n.pero@mi.flashnet.it>
|
||||||
|
|
||||||
* TextConverters/RTF/GNUmakefile.preamble (ADDITIONAL_LIB_DIRS):
|
* TextConverters/RTF/GNUmakefile.preamble (ADDITIONAL_LIB_DIRS):
|
||||||
|
|
|
@ -1441,7 +1441,7 @@ static NSImage *unexpandable = nil;
|
||||||
NSLog(@"performDragOperation");
|
NSLog(@"performDragOperation");
|
||||||
if ([_dataSource
|
if ([_dataSource
|
||||||
respondsToSelector:
|
respondsToSelector:
|
||||||
@selector(outlineView:validateDrop:proposedItem:proposedChildIndex:)])
|
@selector(outlineView:acceptDrop:proposedItem:proposedChildIndex:)])
|
||||||
{
|
{
|
||||||
id item;
|
id item;
|
||||||
int childIndex;
|
int childIndex;
|
||||||
|
@ -1470,9 +1470,9 @@ static NSImage *unexpandable = nil;
|
||||||
|
|
||||||
return [_dataSource
|
return [_dataSource
|
||||||
outlineView: self
|
outlineView: self
|
||||||
validateDrop: sender
|
acceptDrop: sender
|
||||||
proposedItem: item
|
proposedItem: item
|
||||||
proposedChildIndex: childIndex];
|
proposedChildIndex: childIndex];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return NO;
|
return NO;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue