mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 02:45:37 -04:00
[libcalamares] Consistent namespace usage in partition service
- The sub-directories under libcalamares (e.g. Utils, ..) all live in namespace CalamaresUtils (well, except for Logger). The services (e.g. subdirs other than utils/) live in their own nested namespace, so partitioning should go into CalamaresUtils::Partition for consistency.
This commit is contained in:
parent
63507801b7
commit
34ffc7a20a
9 changed files with 72 additions and 63 deletions
|
@ -86,10 +86,10 @@ PartitionLayout::addEntry( PartitionLayout::PartitionEntry entry )
|
|||
}
|
||||
|
||||
PartitionLayout::PartitionEntry::PartitionEntry( const QString& size, const QString& min, const QString& max )
|
||||
: partSize( size )
|
||||
, partMinSize( min )
|
||||
, partMaxSize( max )
|
||||
{
|
||||
partSize = Calamares::PartitionSize( size );
|
||||
partMinSize = Calamares::PartitionSize( min );
|
||||
partMaxSize = Calamares::PartitionSize( max );
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue