Add code to support item identifier to NSTableView

This commit is contained in:
Gregory John Casamento 2024-02-16 23:14:36 -05:00
parent 53e040a6bb
commit 182427bf97
4 changed files with 10 additions and 2 deletions

View file

@ -6889,6 +6889,11 @@ For a more detailed explanation, -setSortDescriptors:. */
return NSNotFound;
}
- (NSView *) makeViewWithIdentifier: (NSUserInterfaceItemIdentifier)identifier owner:(id)owner
{
return nil;
}
@end /* implementation of NSTableView */
@implementation NSTableView (SelectionHelper)