Clang: warnings--
This commit is contained in:
parent
342b819a1d
commit
ca60a7fc16
@ -32,8 +32,8 @@ class DeviceModel : public QAbstractListModel
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
DeviceModel( QObject* parent = 0 );
|
||||
~DeviceModel();
|
||||
DeviceModel( QObject* parent = nullptr );
|
||||
~DeviceModel() override;
|
||||
|
||||
/**
|
||||
* Init the model with the list of devices. Does *not* take ownership of the
|
||||
|
@ -90,7 +90,7 @@ public:
|
||||
ColumnCount // Must remain last
|
||||
};
|
||||
|
||||
PartitionModel( QObject* parent = 0 );
|
||||
PartitionModel( QObject* parent = nullptr );
|
||||
/**
|
||||
* device must remain alive for the life of PartitionModel
|
||||
*/
|
||||
|
@ -42,7 +42,7 @@ public:
|
||||
};
|
||||
|
||||
explicit PartitionBarsView( QWidget* parent = nullptr );
|
||||
virtual ~PartitionBarsView();
|
||||
virtual ~PartitionBarsView() override;
|
||||
|
||||
void setNestedPartitionsMode( NestedPartitionsMode mode );
|
||||
|
||||
|
@ -36,7 +36,7 @@ class PartitionLabelsView : public QAbstractItemView
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit PartitionLabelsView( QWidget* parent = nullptr );
|
||||
virtual ~PartitionLabelsView();
|
||||
virtual ~PartitionLabelsView() override;
|
||||
|
||||
QSize minimumSizeHint() const override;
|
||||
|
||||
|
@ -41,8 +41,8 @@ class PLUGINDLLEXPORT PartitionViewStep : public Calamares::ViewStep
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit PartitionViewStep( QObject* parent = 0 );
|
||||
virtual ~PartitionViewStep();
|
||||
explicit PartitionViewStep( QObject* parent = nullptr );
|
||||
virtual ~PartitionViewStep() override;
|
||||
|
||||
QString prettyName() const override;
|
||||
QWidget* createSummaryWidget() const override;
|
||||
|
Loading…
Reference in New Issue
Block a user