From 86c59c0d6fe0bc5d7c7a33e0b715ba38497410a3 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Fri, 27 Jul 2001 12:18:31 +0000 Subject: 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). --- perl-install/install_steps_interactive.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install') 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(); } -- cgit v1.2.1