diff options
author | Arno <arno@disconnect.de> | 2019-01-12 18:03:59 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2019-01-12 18:03:59 +0100 |
commit | 77c6915b6ca2b727aaebb4871088d57fb9b926d7 (patch) | |
tree | 17a2fb3a798b631d477fc095f8d14a121b17acf3 /mappingtreeproxy.h | |
parent | 4e5e0e6ec5668a0f0397dd8acbee0bd2f4bd0f67 (diff) | |
download | SheMov-77c6915b6ca2b727aaebb4871088d57fb9b926d7.tar.gz SheMov-77c6915b6ca2b727aaebb4871088d57fb9b926d7.tar.bz2 SheMov-77c6915b6ca2b727aaebb4871088d57fb9b926d7.zip |
Various clang warning fixes
Mostly nullptr, one missing include that wasn't really missed, and a
stray ;
Diffstat (limited to 'mappingtreeproxy.h')
-rw-r--r-- | mappingtreeproxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mappingtreeproxy.h b/mappingtreeproxy.h index 0dd7c8d..158cde9 100644 --- a/mappingtreeproxy.h +++ b/mappingtreeproxy.h @@ -13,7 +13,7 @@ class MappingTreeProxy : public QSortFilterProxyModel { Q_OBJECT public: - explicit MappingTreeProxy(QObject *parent = 0); + explicit MappingTreeProxy(QObject *parent = nullptr); public slots: void setFilter(const QString &filter); |