[libcalamaresui] Reduce 0-for-nullptr warnings in 3rd party code

- replace = 0 with = nullptr to reduce warnings; not a meaningful
   or copyrightable change.
This commit is contained in:
Adriaan de Groot 2019-04-11 13:15:10 +02:00
parent 1008a91eba
commit 6560c194ad
3 changed files with 5 additions and 5 deletions

View file

@ -16,7 +16,7 @@ class QJsonModel : public QAbstractItemModel
{
Q_OBJECT
public:
explicit QJsonModel(QObject *parent = 0);
explicit QJsonModel(QObject *parent = nullptr);
~QJsonModel();
bool load(const QString& fileName);
bool load(QIODevice * device);