summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-04-22 21:58:04 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-04-22 21:58:04 +0000
commite70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0 (patch)
treec634f31a92c4341fa37d8e214aa45217715d52f1 /perl-install/install_steps_interactive.pm
parent6c52e7d79cd3440c19d9c58302a61f0d112fd438 (diff)
downloaddrakx-backup-do-not-use-e70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0.tar
drakx-backup-do-not-use-e70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0.tar.gz
drakx-backup-do-not-use-e70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0.tar.bz2
drakx-backup-do-not-use-e70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0.tar.xz
drakx-backup-do-not-use-e70327417f8ce3bd2a03c7da1fd46ea2a8e8e4b0.zip
fix typos and cleanup syntax
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 68e4329b4..8158c23e0 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -719,19 +719,19 @@ N("There was an error installing packages:"), $1, N("Go on anyway?") ], 1) and r
sub afterInstallPackages($) {
my ($o) = @_;
my $_w = $o->wait_message('', N("Post-install configuration"));
- $o->SUPER::afterInstallPackages($o);
+ $o->SUPER::afterInstallPackages;
}
sub copyKernelFromFloppy {
my ($o) = @_;
$o->ask_okcancel('', N("Please insert the Boot floppy used in drive %s", $o->{blank}), 1) or return;
- $o->SUPER::copyKernelFromFloppy();
+ $o->SUPER::copyKernelFromFloppy;
}
sub updateModulesFromFloppy {
my ($o) = @_;
$o->ask_okcancel('', N("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return;
- $o->SUPER::updateModulesFromFloppy();
+ $o->SUPER::updateModulesFromFloppy;
}
#------------------------------------------------------------------------------
@@ -1201,7 +1201,7 @@ sub addUser {
sub setupBootloaderBefore {
my ($o) = @_;
my $_w = $o->wait_message('', N("Preparing bootloader..."));
- $o->SUPER::setupBootloaderBefore($o);
+ $o->SUPER::setupBootloaderBefore;
}
#------------------------------------------------------------------------------