mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-06-01 22:21:55 +00:00
Move _applyBindingsToCell:atRow: to NSTableColumn
This commit is contained in:
parent
21d0bc906e
commit
d8c4c14018
3 changed files with 92 additions and 92 deletions
|
@ -147,9 +147,11 @@ static NSImage *unexpandable = nil;
|
|||
- (id) _prototypeCellViewFromTableColumn: (NSTableColumn *)tb;
|
||||
- (void) _drawCellViewRow: (NSInteger)rowIndex
|
||||
clipRect: (NSRect)clipRect;
|
||||
@end
|
||||
|
||||
@interface NSTableColumn (Private)
|
||||
- (void) _applyBindingsToCell: (NSCell *)cell
|
||||
forTableColumn: (NSTableColumn *)tb
|
||||
row: (NSInteger)index;
|
||||
atRow: (NSInteger)index;
|
||||
@end
|
||||
|
||||
@interface NSTreeNode (Private_NSOutlineView)
|
||||
|
@ -1985,9 +1987,8 @@ Also returns the child index relative to this parent. */
|
|||
forTableColumn: (NSTableColumn *)tb
|
||||
row: (NSInteger)index
|
||||
{
|
||||
[self _applyBindingsToCell: cell
|
||||
forTableColumn: tb
|
||||
row: index];
|
||||
[tb _applyBindingsToCell: cell
|
||||
atRow: index];
|
||||
|
||||
if (_del_responds)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue