mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:10:47 +00:00
* Source/NSTableView.m (-textDidEndEditing:): Add missing break
to previous commit. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24426 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c90631b45
commit
220bd2c9ae
2 changed files with 5 additions and 0 deletions
|
@ -1,7 +1,11 @@
|
||||||
|
|
||||||
2007-01-28 Matt Rice <ratmice@gmail.com>
|
2007-01-28 Matt Rice <ratmice@gmail.com>
|
||||||
|
|
||||||
* Source/NSTableView.m (-textDidEndEditing:): Handle
|
* Source/NSTableView.m (-textDidEndEditing:): Handle
|
||||||
NSIllegalTextMovement.
|
NSIllegalTextMovement.
|
||||||
|
|
||||||
|
* Source/NSTableView.m (-textDidEndEditing:): Add missing break
|
||||||
|
to previous commit.
|
||||||
|
|
||||||
2007-01-27 Fred Kiefer <FredKiefer@gmx.de>
|
2007-01-27 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
|
|
|
@ -5233,6 +5233,7 @@ static BOOL selectContiguousRegion(NSTableView *self,
|
||||||
{
|
{
|
||||||
case NSIllegalTextMovement:
|
case NSIllegalTextMovement:
|
||||||
[self abortEditing];
|
[self abortEditing];
|
||||||
|
break;
|
||||||
case NSReturnTextMovement:
|
case NSReturnTextMovement:
|
||||||
[self _editNextCellAfterRow: row inColumn: column];
|
[self _editNextCellAfterRow: row inColumn: column];
|
||||||
// Send action ?
|
// Send action ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue