diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-12 13:24:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-12 13:24:16 +0000 |
commit | 6cf928fcc1227753f6f4e7da0ae50968efb037b8 (patch) | |
tree | 7cfddcb53dd07a804c123957baf2af389bd2ef8c /perl-install/mygtk2.pm | |
parent | 1f83a97620e5ab86f703e071ac3e3b874a64e6df (diff) | |
download | drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.gz drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.bz2 drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.tar.xz drakx-6cf928fcc1227753f6f4e7da0ae50968efb037b8.zip |
return the child when MagicWindow is using the $::WizardWindow
(otherwise the user of the MagicWindow can destroy the WizardWindow)
Diffstat (limited to 'perl-install/mygtk2.pm')
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 64e5c216a..6b7811ab4 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -482,7 +482,7 @@ sub _gtk__MagicWindow { } gtkadd($::WizardTable, children_loose => [ $sub_child ]); - $w = $::WizardWindow; + $w = $sub_child; } $w; } |