mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 20:01:11 +00:00
* 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:
parent
125411a8e9
commit
07eeaa998d
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue