typing in the file table will select the appropriate item in Leopard

This commit is contained in:
Mitchell Livingston 2007-10-27 14:28:58 +00:00
parent 515d04de1a
commit 3a62681b17
1 changed files with 5 additions and 0 deletions

View File

@ -804,6 +804,11 @@ typedef enum
} }
} }
- (NSString *)outlineView:(NSOutlineView *)outlineView typeSelectStringForTableColumn:(NSTableColumn *)tableColumn item:(id)item
{
return [item objectForKey: @"Name"];
}
- (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect - (NSString *) outlineView: (NSOutlineView *) outlineView toolTipForCell: (NSCell *) cell rect: (NSRectPointer) rect
tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation tableColumn: (NSTableColumn *) tableColumn item: (id) item mouseLocation: (NSPoint) mouseLocation
{ {