summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-12 16:10:15 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-12 16:10:15 +0000
commitf45a30d6581734346d198f2643f751057199c16a (patch)
tree17f18045452df8b65907d2d7ff113aa3d439aa17 /perl-install/install_steps_interactive.pm
parent4c01fcc2ee46d5420c1e9ad8530b34e23dc6830c (diff)
downloaddrakx-f45a30d6581734346d198f2643f751057199c16a.tar
drakx-f45a30d6581734346d198f2643f751057199c16a.tar.gz
drakx-f45a30d6581734346d198f2643f751057199c16a.tar.bz2
drakx-f45a30d6581734346d198f2643f751057199c16a.tar.xz
drakx-f45a30d6581734346d198f2643f751057199c16a.zip
(summary): remove 'clicked' (labels are used)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 69bcc59fe..64f0f6895 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -741,15 +741,15 @@ sub summary {
{ label => _("Keyboard"), val => \$o->{keyboard}, clicked => sub { $o->selectKeyboard(1) }, format => sub { translate(keyboard::keyboard2text($_[0])) } } },
{ label => _("Timezone"), val => \$o->{timezone}{timezone}, clicked => sub { $o->configureTimezone(1) } },
{ label => _("Printer"), val => \$o->{printer}{mode}, clicked => sub { $o->configurePrinter(1) }, format => sub { $_[0] || _("No printer") } },
+ (map {
+{ label => _("ISDN card"), val => $_->{description}, clicked => sub { $o->configureNetwork } }
+ } grep { $_->{driver} eq 'hisax' } detect_devices::probeall()),
(map {
-{ label => _("Sound card"), val => \ (my $i = $_->{description}), clicked => sub {} }
+{ label => _("Sound card"), val => $_->{description} }
} modules::get_that_type('sound')),
(map {
-{ label => _("TV card"), val => \ (my $i = $_->{description}), clicked => sub {} }
+{ label => _("TV card"), val => $_->{description} }
} grep { $_->{driver} eq 'bttv' } detect_devices::probeall()),
- (map {
-{ label => _("ISDN card"), val => \ (my $i = $_->{description}), clicked => sub { $o->configureNetwork } }
- } grep { $_->{driver} eq 'hisax' } detect_devices::probeall()),
]);
}