Corrected bug in latest patch.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23545 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2006-09-17 14:08:29 +00:00
parent 63b08d5e52
commit c7839ee576
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-09-17 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSTableView.m (-_isCellEditableColumn:row:): Correced
error in last patch, pointed out by David Ayers <ayers@fsfe.org>.
2006-09-17 Fred Kiefer <FredKiefer@gmx.de>
* Images/GSSearch.tiff,

View file

@ -6029,7 +6029,7 @@ static inline float computePeriod(NSPoint mouseLocationWin,
if (![tableColumn isEditable])
{
// otherwise ask the delegate, if any.
[self _shouldEditTableColumn: tableColumn row: rowIndex];
return [self _shouldEditTableColumn: tableColumn row: rowIndex];
}
return YES;