diff options
author | Pascal Terjan <pterjan@mageia.org> | 2012-04-24 21:58:30 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2012-04-24 21:58:30 +0000 |
commit | ef4d052aecde0c2d76f962c597380576fdec4a8c (patch) | |
tree | 56fd3dfed5cbac310448611aa8bc1fe8fc273816 /perl-install/fs | |
parent | 6f3e6537d28cf9c2de2c4c2427ed5a4e9c9f06d1 (diff) | |
download | drakx-ef4d052aecde0c2d76f962c597380576fdec4a8c.tar drakx-ef4d052aecde0c2d76f962c597380576fdec4a8c.tar.gz drakx-ef4d052aecde0c2d76f962c597380576fdec4a8c.tar.bz2 drakx-ef4d052aecde0c2d76f962c597380576fdec4a8c.tar.xz drakx-ef4d052aecde0c2d76f962c597380576fdec4a8c.zip |
reuse code from hd_gtk, fixes display of "Use free space" solution
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 7712301c3..58acbf54d 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -287,10 +287,9 @@ sub warn_reboot_needed { sub create_display_box { my ($kind, $resize, $fill_empty, $button) = @_; - # perl_checker: require UNIVERSAL - my @parts = fs::get::hds_fstab_and_holes($kind->{val}) if UNIVERSAL::can($kind->{val}, 'first_usable_sector,'); - my $totalsectors = $kind->{val}{totalsectors}; + my @parts = diskdrake::hd_gtk::kind2parts($kind); + my $totalsectors = diskdrake::hd_gtk::kind2sectors($kind, @parts); my $width = 540; my $minwidth = 40; |