* Source/NSTableView.m: Whitespace changes to conform to coding

standards.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24049 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ratmice 2006-11-07 10:46:10 +00:00
parent 21acbeb85f
commit 959f0eaff3
2 changed files with 38 additions and 29 deletions

View file

@ -1,3 +1,8 @@
2006-11-07 Matt Rice <ratmice@gmail.com>
* Source/NSTableView.m: Whitespace changes to conform to coding
standards.
2006-11-07 Matt Rice <ratmice@gmail.com> 2006-11-07 Matt Rice <ratmice@gmail.com>
* Source/NSTableView.m (-mouseDown): Only call editWithFrame: from a * Source/NSTableView.m (-mouseDown): Only call editWithFrame: from a

View file

@ -5584,7 +5584,8 @@ static inline float computePeriod(NSPoint mouseLocationWin,
} }
} }
- (void) _editNextCellAfterRow:(int)row inColumn:(int)column - (void) _editNextCellAfterRow: (int) row
inColumn: (int) column
{ {
if (++row >= _numberOfRows) if (++row >= _numberOfRows)
row = 0; row = 0;
@ -5596,7 +5597,10 @@ static inline float computePeriod(NSPoint mouseLocationWin,
if ([self _isCellEditableColumn: column row:row]) if ([self _isCellEditableColumn: column row:row])
{ {
[self editColumn:column row:row withEvent:nil select:YES]; [self editColumn: column
row: row
withEvent: nil
select: YES];
} }
} }
} }