Use nullptr instead of 0 for pointers.
This commit is contained in:
parent
b043b42795
commit
631dcc18f5
@ -57,7 +57,7 @@ class NetInstallPage : public QWidget
|
|||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
NetInstallPage( QWidget* parent = 0 );
|
NetInstallPage( QWidget* parent = nullptr );
|
||||||
void onActivate();
|
void onActivate();
|
||||||
|
|
||||||
bool isReady();
|
bool isReady();
|
||||||
|
@ -29,7 +29,7 @@ class GroupSelectionWidget : public QWidget
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit GroupSelectionWidget( QString name, QString description, QStringList packages, QWidget* parent = 0 );
|
explicit GroupSelectionWidget( QString name, QString description, QStringList packages, QWidget* parent = nullptr );
|
||||||
|
|
||||||
// Current status of the group: is it selected in the view?
|
// Current status of the group: is it selected in the view?
|
||||||
bool isToggled() const;
|
bool isToggled() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user