Subject: | Attempting to place destroyed button widget gives Segmentation Fault |
The following gives a Segmentation Fault when running on Solaris + Win2K.
v804.027 used on both OS's. Perl v5.6.0 used on Solaris, v5.8.4 used on Win2K.
use strict;
use diagnostics;
use Tk;
my $mw = MainWindow->new;
my $button = $mw->Button->grid;
$button->destroy;
$button->grid;
MainLoop;