Use nullptr where possible

This commit is contained in:
Martin Kleusberg
2017-10-30 21:20:02 +01:00
parent 6afcaf6c1f
commit ee32b3e4e1
30 changed files with 76 additions and 76 deletions

View File

@@ -19,7 +19,7 @@ class SqliteTableModel : public QAbstractTableModel
#endif
public:
explicit SqliteTableModel(DBBrowserDB& db, QObject *parent = 0, size_t chunkSize = 50000, const QString& encoding = QString());
explicit SqliteTableModel(DBBrowserDB& db, QObject *parent = nullptr, size_t chunkSize = 50000, const QString& encoding = QString());
void reset();
int rowCount(const QModelIndex &parent = QModelIndex()) const;