diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-13 13:46:58 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-13 13:46:58 +0000 |
commit | d290da1cdaeb5364858d28de749af56f6c175104 (patch) | |
tree | 1003328460239d5f8a884467aec7d7986eddf113 | |
parent | 4b619a75afec9152e407406f8fd241784e7e3223 (diff) | |
download | drakx-d290da1cdaeb5364858d28de749af56f6c175104.tar drakx-d290da1cdaeb5364858d28de749af56f6c175104.tar.gz drakx-d290da1cdaeb5364858d28de749af56f6c175104.tar.bz2 drakx-d290da1cdaeb5364858d28de749af56f6c175104.tar.xz drakx-d290da1cdaeb5364858d28de749af56f6c175104.zip |
- diskdrake:
o graphical error message when "No hard drives found" (#38699)
(otherwise drakbug will catch it and suggest to report a bug...)
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 51dd3b9ed..f6445c2e9 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,7 @@ - fix gurpmi path (#38679) +- diskdrake: + o graphical error message when "No hard drives found" (#38699) + (otherwise drakbug will catch it and suggest to report a bug...) - draksound: o enable to set 5.1 channels (#38796) - scannerdrake: fix undefined variable $in (#36387, #37039) diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index d98049aa2..340592822 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -260,7 +260,7 @@ sub create_automatic_notebooks { my $b = $_->{marked} or $notebook_widget->remove_page($::i); $b; } @notebook; - @notebook or die N("No hard drives found"); + @notebook or $in->ask_warn(N("Error"), N("No hard drives found")), $in->exit(1); } ################################################################################ |