[partition] Rename execute to createPartitions

This commit is contained in:
Gaël PORTAY 2020-10-30 10:15:30 -04:00
parent f2bfe2bd6a
commit f03ae06deb
4 changed files with 16 additions and 16 deletions

View file

@ -85,12 +85,12 @@ public:
* @brief Apply the current partition layout to the selected drive space.
* @return A list of Partition objects.
*/
QList< Partition* > execute( Device* dev,
qint64 firstSector,
qint64 lastSector,
QString luksPassphrase,
PartitionNode* parent,
const PartitionRole& role );
QList< Partition* > createPartitions( Device* dev,
qint64 firstSector,
qint64 lastSector,
QString luksPassphrase,
PartitionNode* parent,
const PartitionRole& role );
private:
FileSystem::Type m_defaultFsType;