mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 02:15:36 -04:00
[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:
parent
1008a91eba
commit
6560c194ad
3 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue