[partition] Add support for partition type

This commit is contained in:
Gaël PORTAY 2020-03-19 08:37:21 -04:00
parent 2eb84e2de1
commit c5ebe13aeb
7 changed files with 28 additions and 2 deletions

View file

@ -40,6 +40,7 @@ public:
struct PartitionEntry
{
QString partLabel;
QString partType;
QString partMountPoint;
FileSystem::Type partFileSystem = FileSystem::Unknown;
CalamaresUtils::Partition::PartitionSize partSize;
@ -73,6 +74,7 @@ public:
const QString& min = QString(),
const QString& max = QString() );
bool addEntry( const QString& label,
const QString& type,
const QString& mountPoint,
const QString& fs,
const QString& size,