Use nullptr instead of 0 for pointers.

This commit is contained in:
shainer 2016-06-27 23:03:15 +01:00
parent b043b42795
commit 631dcc18f5
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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;