Refactor: Simplify field names.

This commit is contained in:
2017-07-19 16:37:11 +01:00
parent 711d19fd04
commit 16434f2788
170 changed files with 1816 additions and 1811 deletions

View File

@@ -779,12 +779,12 @@ namespace DiscImageChef.Core.Devices.Dumping
{
xmlFileSysInfo[i] = new PartitionType
{
Description = partitions[i].PartitionDescription,
EndSector = (int)(partitions[i].PartitionStartSector + partitions[i].PartitionSectors - 1),
Name = partitions[i].PartitionName,
Sequence = (int)partitions[i].PartitionSequence,
StartSector = (int)partitions[i].PartitionStartSector,
Type = partitions[i].PartitionType
Description = partitions[i].Description,
EndSector = (int)(partitions[i].Start + partitions[i].Length - 1),
Name = partitions[i].Name,
Sequence = (int)partitions[i].Sequence,
StartSector = (int)partitions[i].Start,
Type = partitions[i].Type
};
List<FileSystemType> lstFs = new List<FileSystemType>();
@@ -832,9 +832,9 @@ namespace DiscImageChef.Core.Devices.Dumping
Partition wholePart = new Partition
{
PartitionName = "Whole device",
PartitionSectors = blocks,
PartitionLength = blocks * blockSize
Name = "Whole device",
Length = blocks,
Size = blocks * blockSize
};
foreach(Filesystem _plugin in plugins.PluginsList.Values)