From a375c38059edb19c28fdbcaee03fdd0eeef48db7 Mon Sep 17 00:00:00 2001 From: esersale Date: Wed, 4 Oct 2006 11:32:51 +0000 Subject: [PATCH] * Source/NSView.m: In -setToolTip: sets the has_tooltips flag. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@23754 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 4 ++++ Source/NSView.m | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index f83e4e6b8..ca5193307 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-10-04 Enrico Sersale + + * Source/NSView.m: In -setToolTip: sets the has_tooltips flag. + 2006-10-04 Richard Frith-Macdonald * Source/NSWindow.m: Add help key support for context help. diff --git a/Source/NSView.m b/Source/NSView.m index 09bb3cf98..770f6349d 100644 --- a/Source/NSView.m +++ b/Source/NSView.m @@ -4353,6 +4353,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level) { GSToolTips *tt = [GSToolTips tipsForView: self]; + _rFlags.has_tooltips = 1; [tt setToolTip: string]; }