diff --git a/Source/NSCell.m b/Source/NSCell.m index acce736af..98bb9f5e7 100644 --- a/Source/NSCell.m +++ b/Source/NSCell.m @@ -1991,6 +1991,14 @@ static NSColor *dtxtCol; return nil; } +/** Although not documented, Apple XIBs allow specifying a tool tip on an NSCell + it's unclear exactly where that tooltip should be set/applied + but not responding makes XIBs unloadable */ +- (void) setToolTip: (NSString *) toolTip +{ + return nil; +} + /**
This method is used by subclasses to specify the control view.
*/ - (void) setControlView: (NSView*)view