From f8ce5cf7c3d0de9409e546b6f62cae74dee53a4e Mon Sep 17 00:00:00 2001 From: Jonathan Gillaspie Date: Wed, 3 Oct 2012 01:32:06 +0000 Subject: [PATCH] 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 --- Source/NSCell.m | 8 ++++++++ 1 file changed, 8 insertions(+) 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