This is not a bug! It is a documented change in the way Tk::Listbox operates.
See "perldoc Tk::804delta"
In summary:
curselection of Tk::Listbox now returns an array reference in scalar
context. This means you have to write
my(@selected) = $listbox->curselection
or
my(@selected) = @{ $listbox->curselection }
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

