summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-07-27 12:18:31 +0000
committerFrancois Pons <fpons@mandriva.com>2001-07-27 12:18:31 +0000
commit86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3 (patch)
tree0fba3236c53f3fe237668ec55689e708de2c1ff1
parentad69c6747c992c1822e03a30107a28551d221189 (diff)
downloaddrakx-backup-do-not-use-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar
drakx-backup-do-not-use-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.gz
drakx-backup-do-not-use-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.bz2
drakx-backup-do-not-use-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.tar.xz
drakx-backup-do-not-use-86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3.zip
changed warn dialog to okcancel dialog when asking user to insert Boot floppy
used or Update Modules floppy (die may cause to rerun install else).
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index e41c5c51a..bf8ce9fcc 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -729,13 +729,13 @@ sub afterInstallPackages($) {
sub copyKernelFromFloppy {
my ($o) = @_;
- $o->ask_warn('', _("Please insert the Boot floppy used in drive %s", $o->{blank}));
+ $o->ask_okcancel('', _("Please insert the Boot floppy used in drive %s", $o->{blank}), 1) or return;
$o->SUPER::copyKernelFromFloppy();
}
sub updateModulesFromFloppy {
my ($o) = @_;
- $o->ask_warn('', _("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}));
+ $o->ask_okcancel('', _("Please insert the Update Modules floppy in drive %s", $o->{updatemodules}), 1) or return;
$o->SUPER::updateModulesFromFloppy();
}