mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 01:15:38 -04:00
Fix build (warnings--, but breakage++ is not good)
This commit is contained in:
parent
c6297f1db5
commit
342b819a1d
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ CreatePartitionJob::prettyName() const
|
|||
{
|
||||
return tr( "Create new %2MB partition on %4 (%3) with file system %1." )
|
||||
.arg( m_partition->fileSystem().name() )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() ) )
|
||||
.arg( m_device->name() )
|
||||
.arg( m_device->deviceNode() );
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ CreatePartitionJob::prettyDescription() const
|
|||
return tr( "Create new <strong>%2MB</strong> partition on <strong>%4</strong> "
|
||||
"(%3) with file system <strong>%1</strong>." )
|
||||
.arg( m_partition->fileSystem().name() )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() ) )
|
||||
.arg( m_device->name() )
|
||||
.arg( m_device->deviceNode() );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue