mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[USETUP]
Display the proper partition type 'Extended Partiton' when an extended partition is going to be deleted. svn path=/trunk/; revision=63396
This commit is contained in:
parent
110e942a46
commit
be2afdedf6
1 changed files with 4 additions and 0 deletions
|
@ -2137,6 +2137,10 @@ DeletePartitionPage(PINPUT_RECORD Ir)
|
|||
{
|
||||
PartType = "NTFS"; /* FIXME: Not quite correct! */
|
||||
}
|
||||
else if (IsContainerPartition(PartEntry->PartitionType))
|
||||
{
|
||||
PartType = MUIGetString(STRING_EXTENDED_PARTITION);
|
||||
}
|
||||
}
|
||||
|
||||
PartSize = PartEntry->SectorCount.QuadPart * DiskEntry->BytesPerSector;
|
||||
|
|
Loading…
Reference in a new issue