diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-07 15:10:20 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-07 15:10:20 +0000 |
commit | 1c2faefdc0d57d1f4423bec36aaad88c242392a3 (patch) | |
tree | 3f876be2d16b373d8239558152a1d881aadb10fd /perl-install/ugtk2.pm | |
parent | d0b6fcff301e0ce274a7872cfcbd1c9d3d585dd0 (diff) | |
download | drakx-1c2faefdc0d57d1f4423bec36aaad88c242392a3.tar drakx-1c2faefdc0d57d1f4423bec36aaad88c242392a3.tar.gz drakx-1c2faefdc0d57d1f4423bec36aaad88c242392a3.tar.bz2 drakx-1c2faefdc0d57d1f4423bec36aaad88c242392a3.tar.xz drakx-1c2faefdc0d57d1f4423bec36aaad88c242392a3.zip |
$w->{isWizard} is unused
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index ee8fcc568..5714856d5 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -831,10 +831,9 @@ sub new { my $o = bless { %opts }, $type; while (my $e = shift @tempory::objects) { $e->destroy } - $o->{isWizard} ||= $::isWizard; $o->{isEmbedded} ||= $::isEmbedded; - $o->{pop_it} ||= $pop_it || !$o->{isWizard} && !$o->{isEmbedded} || $::WizardTable && do { + $o->{pop_it} ||= $pop_it || !$::isWizard && !$o->{isEmbedded} || $::WizardTable && do { #- do not take into account the DrawingArea any { !$_->isa('Gtk2::DrawingArea') && $_->visible } $::WizardTable->get_children; }; @@ -895,7 +894,7 @@ sub new { } sub set_main_window_size { my ($o) = @_; - my ($width, $height) = $::isInstall ? ($::real_windowwidth, $::real_windowheight) : $o->{isWizard} ? (540, 360) : (600, 400); + my ($width, $height) = $::isInstall ? ($::real_windowwidth, $::real_windowheight) : $::isWizard ? (540, 360) : (600, 400); $o->{window}->set_size_request($width, $height); } |