Clang: warnings--
This commit is contained in:
parent
9f1cca5ec7
commit
c6297f1db5
@ -45,7 +45,7 @@ class UIDLLEXPORT ViewStep : public QObject
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ViewStep( QObject* parent = nullptr );
|
||||
virtual ~ViewStep();
|
||||
virtual ~ViewStep() override;
|
||||
|
||||
virtual QString prettyName() const = 0;
|
||||
|
||||
|
@ -34,7 +34,7 @@ class PLUGINDLLEXPORT DracutLuksCfgJob : public Calamares::CppJob
|
||||
|
||||
public:
|
||||
explicit DracutLuksCfgJob( QObject* parent = nullptr );
|
||||
virtual ~DracutLuksCfgJob();
|
||||
virtual ~DracutLuksCfgJob() override;
|
||||
|
||||
QString prettyName() const override;
|
||||
|
||||
|
@ -34,7 +34,7 @@ class PLUGINDLLEXPORT InteractiveTerminalViewStep : public Calamares::ViewStep
|
||||
|
||||
public:
|
||||
explicit InteractiveTerminalViewStep( QObject* parent = nullptr );
|
||||
virtual ~InteractiveTerminalViewStep();
|
||||
virtual ~InteractiveTerminalViewStep() override;
|
||||
|
||||
QString prettyName() const override;
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "jobs/CreatePartitionJob.h"
|
||||
|
||||
#include "utils/Logger.h"
|
||||
#include "utils/Units.h"
|
||||
|
||||
// KPMcore
|
||||
#include <kpmcore/backend/corebackend.h>
|
||||
@ -47,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( m_partition->capacity() / 1024 / 1024 )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() )
|
||||
.arg( m_device->name() )
|
||||
.arg( m_device->deviceNode() );
|
||||
}
|
||||
@ -59,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( m_partition->capacity() / 1024 / 1024 )
|
||||
.arg( CalamaresUtils::BytesToMiB( m_partition->capacity() )
|
||||
.arg( m_device->name() )
|
||||
.arg( m_device->deviceNode() );
|
||||
}
|
||||
@ -79,7 +80,7 @@ CreatePartitionJob::exec()
|
||||
int step = 0;
|
||||
const qreal stepCount = 4;
|
||||
|
||||
Report report( 0 );
|
||||
Report report( nullptr );
|
||||
QString message = tr( "The installer failed to create partition on disk '%1'." ).arg( m_device->name() );
|
||||
|
||||
progress( step++ / stepCount );
|
||||
|
@ -72,7 +72,7 @@ CreatePartitionTableJob::prettyStatusMessage() const
|
||||
Calamares::JobResult
|
||||
CreatePartitionTableJob::exec()
|
||||
{
|
||||
Report report( 0 );
|
||||
Report report( nullptr );
|
||||
QString message = tr( "The installer failed to create a partition table on %1." ).arg( m_device->name() );
|
||||
|
||||
CoreBackend* backend = CoreBackendManager::self()->backend();
|
||||
|
@ -63,7 +63,7 @@ DeletePartitionJob::prettyStatusMessage() const
|
||||
Calamares::JobResult
|
||||
DeletePartitionJob::exec()
|
||||
{
|
||||
Report report( 0 );
|
||||
Report report( nullptr );
|
||||
QString message = tr( "The installer failed to delete partition %1." ).arg( m_partition->devicePath() );
|
||||
|
||||
if ( m_device->deviceNode() != m_partition->devicePath() )
|
||||
|
Loading…
Reference in New Issue
Block a user