diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:39:28 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-07-24 22:39:28 +0000 |
commit | b60c0cb8f67d745626fec6f0c8540818f24e91a6 (patch) | |
tree | 783189547888703c391b1719cf9ceaacb1e1aa63 /perl-install/install_steps_gtk.pm | |
parent | 0a96d505550060312a1cd9a04a9ae9bf23ebdaa2 (diff) | |
download | drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.gz drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.bz2 drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.tar.xz drakx-b60c0cb8f67d745626fec6f0c8540818f24e91a6.zip |
move to MDK::Common, bool->to_bool
Diffstat (limited to 'perl-install/install_steps_gtk.pm')
-rw-r--r-- | perl-install/install_steps_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index ca455247a..8843f18b6 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -11,7 +11,7 @@ use vars qw(@ISA); #-###################################################################################### use install_steps_interactive; use interactive_gtk; -use common qw(:common :file :functional :system); +use common; use my_gtk qw(:helpers :wrappers); use Gtk; use devices; @@ -626,7 +626,7 @@ _("There was an error installing packages:"), $1, _("Go on anyway?") ], 1) and r sub set_help { my ($o, @l) = @_; - $o->{current_help} = formatAlaTeX(join "\n", map { _ deref($help::steps{$_}) } @l); + $o->{current_help} = formatAlaTeX(join "\n", map { _(deref($help::steps{$_})) } @l); gtktext_insert($o->{help_window_text}, $o->{current_help}); 1; } |