* Source/NSTableView.m (_shouldEditTableColumn:row:):

Dont invert delegate return value.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23629 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Matt Rice 2006-09-26 16:03:10 +00:00
parent 125411a8e9
commit 07eeaa998d
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-09-25 Matt Rice <ratmice@yahoo.com>
* Source/NSTableView.m (_shouldEditTableColumn:row:):
Dont invert delegate return value.
2006-09-24 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Additions/GNUstepGUI/GSDisplayServer.h:

View file

@ -6012,7 +6012,7 @@ static inline float computePeriod(NSPoint mouseLocationWin,
@selector(tableView:shouldEditTableColumn:row:)])
{
return [_delegate tableView: self shouldEditTableColumn: tableColumn
row: rowIndex] == NO;
row: rowIndex];
}
return YES;