in reply to Re^3: scrolling MListbox in Perl/tk
in thread scrolling MListbox in Perl/tk

I'm seeing similar errors on Solaris 5.10 i86, with Perl 5.8.8, Tk-804.027 and MListbox 1.11. According to CPAN 1.11 is the latest version. Any known limitation for Solaris x86?
Thanks
Patricia

Replies are listed 'Best First'.
Re^5: scrolling MListbox in Perl/tk
by zentara (Cardinal) on Sep 03, 2008 at 12:54 UTC
      I found the fix on the activestate forum:
      Go into the MListbox code, and replace all references of

      $w->can('SUPER::

      with

      $w->can('Tk::Listbox::
        Thank you...I found this answer before I found the ActiveState forum answer. MListbox was driving me crazy.

        I observe there are several references to SUPER:: that are NOT of the $w->can('SUPER::...') form:

        babylon5:root:~:4 # grep -n SUPER /usr/lib/perl5/site_perl/5.10.0/Tk/M +Listbox.pm 32: $w->SUPER::Populate($args); 89: $w->SUPER::Populate($args); 99: my (@ret) = $w->SUPER::configure(@_); 120: $w->SUPER::Populate($args); 334:# $w->SUPER::Populate($args);

        Should these also be changed?