[fsresizer] Fix backwards logic in error message

This commit is contained in:
Adriaan de Groot 2018-09-27 20:49:28 +02:00
parent 869357a89c
commit 2556891e39

View File

@ -221,7 +221,7 @@ ResizeFSJob::exec()
if ( !m.first || !m.second ) if ( !m.first || !m.second )
return Calamares::JobResult::error( return Calamares::JobResult::error(
tr( "Resize Failed" ), tr( "Resize Failed" ),
m_fsname.isEmpty() ? tr( "The filesystem %1 could not be found in this system, and can not be resized." ).arg(m_fsname) !m_fsname.isEmpty() ? tr( "The filesystem %1 could not be found in this system, and can not be resized." ).arg(m_fsname)
: tr( "The device %1 could not be found in this system, and can not be resized." ).arg(m_devicename) ); : tr( "The device %1 could not be found in this system, and can not be resized." ).arg(m_devicename) );
if ( !ResizeOperation::canGrow( m.second ) ) if ( !ResizeOperation::canGrow( m.second ) )
@ -229,7 +229,7 @@ ResizeFSJob::exec()
cDebug() << "canGrow() returned false."; cDebug() << "canGrow() returned false.";
return Calamares::JobResult::error( return Calamares::JobResult::error(
tr( "Resize Failed" ), tr( "Resize Failed" ),
m_fsname.isEmpty() ? tr( "The filesystem %1 can not be resized." ).arg(m_fsname) !m_fsname.isEmpty() ? tr( "The filesystem %1 can not be resized." ).arg(m_fsname)
: tr( "The device %1 can not be resized." ).arg(m_devicename) ); : tr( "The device %1 can not be resized." ).arg(m_devicename) );
} }