diff options
author | Arno <arno@disconnect.de> | 2018-12-09 06:13:53 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-12-09 06:13:53 +0100 |
commit | 21669640641ecf7a9a9adbd37902528d1f814a20 (patch) | |
tree | 3195286e047e14c5febf629e009e69031b81fabd /torrentdisplay.h | |
parent | 017146d134bb7baf257481a766cab21301b481cb (diff) | |
download | ShemovCleaner-21669640641ecf7a9a9adbd37902528d1f814a20.tar.gz ShemovCleaner-21669640641ecf7a9a9adbd37902528d1f814a20.tar.bz2 ShemovCleaner-21669640641ecf7a9a9adbd37902528d1f814a20.zip |
Fix clang warnings for torrent*
Diffstat (limited to 'torrentdisplay.h')
-rw-r--r-- | torrentdisplay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/torrentdisplay.h b/torrentdisplay.h index 221f0af..e689312 100644 --- a/torrentdisplay.h +++ b/torrentdisplay.h @@ -11,7 +11,7 @@ class QTreeView; class TorrentDisplay : public QDialog { Q_OBJECT public: - explicit TorrentDisplay(QWidget *parent = 0, Qt::WindowFlags f = 0); + explicit TorrentDisplay(QWidget *parent = nullptr, Qt::WindowFlags f = nullptr); void setData(const QList<QVariant> data, const QString &filename); QTreeView *fileView() { return mFileView; } |