Coding style

This commit is contained in:
Aurélien Gâteau 2014-07-28 15:00:17 +02:00
parent 9e8c02fa33
commit 0b01c76687
2 changed files with 3 additions and 3 deletions

View File

@ -52,10 +52,10 @@ BootLoaderModel::init( const QList< Device* >& devices )
void
BootLoaderModel::createMbrItems()
{
for( auto device : m_devices )
for ( auto device : m_devices )
{
QString text = tr( "Master Boot Record of %1" )
.arg( device->name() );
.arg( device->name() );
appendRow(
createBootLoaderItem( text, device->deviceNode(), false )
);

View File

@ -64,7 +64,7 @@ bool
isDirty( Partition* partition )
{
return !mountPoint( partition ).isEmpty()
|| format( partition );
|| format( partition );
}
} // namespace