diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-30 21:09:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-30 21:09:40 +0000 |
commit | 466b93aa08e8e19def5fce6f69f684030f85b635 (patch) | |
tree | 982efb80aa86eaca8a27974186413c1836ed058a /perl-install | |
parent | 3f9457a72af162fc18a331b394bf0de8f822400a (diff) | |
download | drakx-466b93aa08e8e19def5fce6f69f684030f85b635.tar drakx-466b93aa08e8e19def5fce6f69f684030f85b635.tar.gz drakx-466b93aa08e8e19def5fce6f69f684030f85b635.tar.bz2 drakx-466b93aa08e8e19def5fce6f69f684030f85b635.tar.xz drakx-466b93aa08e8e19def5fce6f69f684030f85b635.zip |
(new): call interactive_gtk::new
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index f83654b4a..a21ee88da 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -110,7 +110,9 @@ sub new($$) { $my_gtk::force_center = [ $::rootwidth - $::windowwidth, $::logoheight, $::windowwidth, $::windowheight ]; - (bless {}, ref $type || $type)->SUPER::new($o); + $o = (bless {}, ref $type || $type)->SUPER::new($o); + $o->interactive_gtk::new; + $o; } sub enteringStep { |