diff options
author | Arno <arno@disconnect.de> | 2018-12-09 05:55:27 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-12-09 05:55:27 +0100 |
commit | 30f5445a67a27a73bf6def9fbb798b6276bb1732 (patch) | |
tree | 06413f556f8aee6ad760f95eb2128e1f31ababca /filesorter.h | |
parent | 3a4a4a779d4066b9c89e948fb58db3d17f6e5fc3 (diff) | |
download | ShemovCleaner-30f5445a67a27a73bf6def9fbb798b6276bb1732.tar.gz ShemovCleaner-30f5445a67a27a73bf6def9fbb798b6276bb1732.tar.bz2 ShemovCleaner-30f5445a67a27a73bf6def9fbb798b6276bb1732.zip |
Fix nullptr warnings in FileSorter
Diffstat (limited to 'filesorter.h')
-rw-r--r-- | filesorter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filesorter.h b/filesorter.h index 968edf2..e54d744 100644 --- a/filesorter.h +++ b/filesorter.h @@ -6,7 +6,7 @@ class FileSorter : public QSortFilterProxyModel { Q_OBJECT public: - explicit FileSorter(QObject *parent = 0); + explicit FileSorter(QObject *parent = nullptr); protected: virtual bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const; @@ -15,7 +15,7 @@ class FileSorter : public QSortFilterProxyModel { class VideoSorter : public QSortFilterProxyModel { Q_OBJECT public: - explicit VideoSorter(QObject *parent = 0); + explicit VideoSorter(QObject *parent = nullptr); protected: virtual bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const; |