mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
Add 10.7 methods to NSTableView, implement viewAtColumn:row:makeIfnecessary:
This commit is contained in:
parent
41c7257d4b
commit
d3a0dd23c0
1 changed files with 4 additions and 1 deletions
|
@ -6947,7 +6947,10 @@ For a more detailed explanation, -setSortDescriptors:. */
|
|||
|
||||
- (NSView *) viewAtColumn: (NSInteger)column row: (NSInteger)row makeIfNecessary: (BOOL)flag
|
||||
{
|
||||
return nil;
|
||||
NSIndexPath *path = [NSIndexPath indexPathForItem: row inSection: column];
|
||||
NSView *view = [_renderedViewPaths objectForKey: path];
|
||||
|
||||
return view;
|
||||
}
|
||||
|
||||
- (void) registerNib: (NSNib *)nib
|
||||
|
|
Loading…
Reference in a new issue