[partition] tidy up constructor - use initializer-list

This commit is contained in:
Adriaan de Groot 2024-02-26 21:39:37 +01:00
parent 2fce6a3c44
commit ab3612d18d

View File

@ -71,13 +71,13 @@ PartitionLayout::PartitionEntry::PartitionEntry( const QString& label,
, partType( type )
, partAttributes( attributes )
, partMountPoint( mountPoint )
, partNoEncrypt( noEncrypt )
, partFeatures( features )
, partSize( size )
, partMinSize( minSize )
, partMaxSize( maxSize )
{
PartUtils::canonicalFilesystemName( fs, &partFileSystem );
partNoEncrypt = noEncrypt;
}
bool