Skip Menu |

This queue is for tickets about the Tk CPAN distribution.

Report information
The Basics
Id: 55887
Status: resolved
Priority: 0/
Queue: Tk

People
Owner: Nobody in particular
Requestors: lamprecht [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 804.028
Fixed in: 804.029_500



Subject: Tk::HList::BalloonInfo
Hi, Tk::HList should implement BalloonInfo: sub Tk::HList::BalloonInfo{ my ($listbox,$balloon,$X,$Y,@opt) = @_; my $e = $listbox->XEvent; return if !$e; my $path = $listbox->GetNearest($e->y, 1); $path = '' unless defined( $path ); foreach my $opt (@opt) { my $info = $balloon->GetOption($opt,$listbox); if ($opt =~ /^-(statusmsg|balloonmsg)$/ && UNIVERSAL::isa($info,'HASH')) { $balloon->Subclient($path); if (defined $info->{$path}) { return $info->{$path}; } return ''; } return $info if ( defined $info ); } return ''; } Cheers, Christoph
On Wed Mar 24 05:58:44 2010, LAMPRECHT wrote: Show quoted text
> Hi, > > Tk::HList should implement BalloonInfo: >
Thanks, added as change 14072. Regards, Slaven