diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:32:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:32:54 +0000 |
commit | 8631c51b00feadc9be8ebac138e5306557aaf1ba (patch) | |
tree | ea55bbac11ec8e44420cabd3ea24c15304c7dec0 /perl-install/install/steps_gtk.pm | |
parent | d708765778215d877d8c2e31b770775cc8e20bfe (diff) | |
download | drakx-8631c51b00feadc9be8ebac138e5306557aaf1ba.tar drakx-8631c51b00feadc9be8ebac138e5306557aaf1ba.tar.gz drakx-8631c51b00feadc9be8ebac138e5306557aaf1ba.tar.bz2 drakx-8631c51b00feadc9be8ebac138e5306557aaf1ba.tar.xz drakx-8631c51b00feadc9be8ebac138e5306557aaf1ba.zip |
(enteringStep,get_default_step_items,set_default_step_items,summary_prompt) no
more need to define a default banner icon now we do not display them anymore
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 34f9dd625..a7807e036 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -149,8 +149,8 @@ sub enteringStep { my ($o, $step) = @_; printf "Entering step `%s'\n", common::remove_translate_context($o->{steps}{$step}{text}); - if (my @banner_elts = ($o->{steps}{$step}{banner_icon}, translate($o->{steps}{$step}{banner_title}))) { - set_default_step_items(@banner_elts); + if (my $banner_title = $o->{steps}{$step}{banner_title}) { + set_default_step_items($banner_title); } $o->SUPER::enteringStep($step); install::gtk::update_steps_position($o); @@ -609,9 +609,9 @@ sub summary_prompt { gtknew('Button', text => N("Configure"), clicked => sub { $w->{rwindow}->hide; my ($old_icon, $old_title) = get_default_step_items(); - set_default_step_items($e->{banner_icon} || $old_icon, $e->{banner_title} || $old_title); + set_default_step_items($e->{banner_title} || $old_title); $e->{clicked}(); - set_default_step_items($old_icon, $old_title); + set_default_step_items($old_title); $w->{rwindow}->show; $set_entry_labels->(); }) ]; |