Ignore a call to setToolTip on an NSCell. This can be set in XIBs from Apple

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/branches/gnustep_testplant_branch@35622 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Jonathan Gillaspie 2012-10-03 01:32:06 +00:00
parent 9e04422b24
commit f8ce5cf7c3

View file

@ -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;
}
/**<p>This method is used by subclasses to specify the control view.</p>
*/
- (void) setControlView: (NSView*)view