summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-24 17:32:54 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-24 17:32:54 +0000
commit8631c51b00feadc9be8ebac138e5306557aaf1ba (patch)
treeea55bbac11ec8e44420cabd3ea24c15304c7dec0 /perl-install/ugtk2.pm
parentd708765778215d877d8c2e31b770775cc8e20bfe (diff)
downloaddrakx-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/ugtk2.pm')
-rw-r--r--perl-install/ugtk2.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm
index b534be1c7..cc2b57b83 100644
--- a/perl-install/ugtk2.pm
+++ b/perl-install/ugtk2.pm
@@ -702,12 +702,12 @@ sub string_width {
}
-my ($def_step_icon, $def_step_title);
+my ($def_step_title);
sub set_default_step_items {
- ($def_step_icon, $def_step_title) = @_;
+ ($def_step_title) = @_;
}
-sub get_default_step_items { ($def_step_icon, $def_step_title) }
+sub get_default_step_items { ($def_step_title) }
# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
# toplevel window creation helper
@@ -730,7 +730,7 @@ sub new {
'MagicWindow',
title => $title || '',
pop_it => $o->{pop_it},
- $::isInstall ? (banner => Gtk2::Banner->new($icon, $title || (get_default_step_items())[1])) : (),
+ $::isInstall ? (banner => Gtk2::Banner->new($icon, $title || (get_default_step_items()))) : (),
$::isStandalone && $banner_title && $icon ? (banner => Gtk2::Banner->new($icon, $banner_title)) : (),
width => $opts{width}, height => $opts{height}, default_width => $opts{default_width}, default_height => $opts{default_height},
modal => $opts{modal} || $grab || $o->{grab} || $o->{modal} || $o->{transient},