mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 17:35:37 -04:00
Coding style
This commit is contained in:
parent
9e8c02fa33
commit
0b01c76687
2 changed files with 3 additions and 3 deletions
|
@ -52,10 +52,10 @@ BootLoaderModel::init( const QList< Device* >& devices )
|
||||||
void
|
void
|
||||||
BootLoaderModel::createMbrItems()
|
BootLoaderModel::createMbrItems()
|
||||||
{
|
{
|
||||||
for( auto device : m_devices )
|
for ( auto device : m_devices )
|
||||||
{
|
{
|
||||||
QString text = tr( "Master Boot Record of %1" )
|
QString text = tr( "Master Boot Record of %1" )
|
||||||
.arg( device->name() );
|
.arg( device->name() );
|
||||||
appendRow(
|
appendRow(
|
||||||
createBootLoaderItem( text, device->deviceNode(), false )
|
createBootLoaderItem( text, device->deviceNode(), false )
|
||||||
);
|
);
|
||||||
|
|
|
@ -64,7 +64,7 @@ bool
|
||||||
isDirty( Partition* partition )
|
isDirty( Partition* partition )
|
||||||
{
|
{
|
||||||
return !mountPoint( partition ).isEmpty()
|
return !mountPoint( partition ).isEmpty()
|
||||||
|| format( partition );
|
|| format( partition );
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue