Subject: | Tk::DirTree has a wrong ISA list |
In Tk::DirTree, the use base line should be changed from
use base qw(Tk::Widget Tk::Derived Tk::Tree);
to
use base qw(Tk::Derived Tk::Tree);
otherwise things won't work (same change was needed for Tk::Tree some
weeks ago).
Also, make sure that $VERSION is changed, as the current Tk::DirTree
version is the same as the version of the module in the Tk distribution,
but both files are not the same, so must not have the same $VERSION.
Maybe this also applies to Tk::Tree, but I did not check this.
Regards,
Slaven