mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 06:00:48 +00:00
Send text storage versus string for tableView:setObjectValue delegate invocation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@38229 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3f1b7cb970
commit
f173b531ff
1 changed files with 4 additions and 6 deletions
|
@ -3375,13 +3375,11 @@ byExtendingSelection: (BOOL)flag
|
|||
|
||||
if (_dataSource_editable)
|
||||
{
|
||||
NSTableColumn *tb;
|
||||
NSTableColumn *tb = [_tableColumns objectAtIndex: _editedColumn];
|
||||
|
||||
tb = [_tableColumns objectAtIndex: _editedColumn];
|
||||
|
||||
[self _setObjectValue: string // newObjectValue
|
||||
forTableColumn: tb
|
||||
row: _editedRow];
|
||||
[self _setObjectValue: [_textObject textStorage] // newObjectValue
|
||||
forTableColumn: tb
|
||||
row: _editedRow];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue