summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-07-06 17:40:44 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-07-06 17:40:44 +0000
commitd0f59f694d384ef30a13a802a593c9b40dd4f708 (patch)
tree3e20ec52a32e58453ac62bdcf3990b66195979c7 /perl-install/diskdrake
parent8bb122fc9d7b8fb2ff098e446cd3c496e244027a (diff)
downloaddrakx-backup-do-not-use-d0f59f694d384ef30a13a802a593c9b40dd4f708.tar
drakx-backup-do-not-use-d0f59f694d384ef30a13a802a593c9b40dd4f708.tar.gz
drakx-backup-do-not-use-d0f59f694d384ef30a13a802a593c9b40dd4f708.tar.bz2
drakx-backup-do-not-use-d0f59f694d384ef30a13a802a593c9b40dd4f708.tar.xz
drakx-backup-do-not-use-d0f59f694d384ef30a13a802a593c9b40dd4f708.zip
s/check_type/diskdrake::interactive::check_type/
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 9c783159c..fb741e499 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -347,7 +347,7 @@ sub createOrChangeType {
return if $type == $part->{type};
isBusy($part) and $in->ask_warn('', _("Use ``Unmount'' first")), return;
diskdrake::interactive::ask_alldatawillbelost($in, $part, __("After changing type of partition %s, all data on this partition will be lost")) or return;
- check_type($in, $type, $hd, $part) and fsedit::change_type($type, $hd, $part);
+ diskdrake::interactive::check_type($in, $type, $hd, $part) and fsedit::change_type($type, $hd, $part);
} else {
$part->{type} = $type;
diskdrake::interactive::Create($in, $hd, $part, $all_hds);