diff options
author | Arno <arno@disconnect.de> | 2018-01-01 11:38:31 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-01-01 11:38:31 +0100 |
commit | 9a6a0bbaaf1fd12a4d91d2ad0d5f1a3658228390 (patch) | |
tree | eac944cd5704c79ac3c47515f858c56f781e063b | |
parent | 9ac5cb448aaaa62c5d8a4276640937c347b2b68d (diff) | |
download | SheMov-9a6a0bbaaf1fd12a4d91d2ad0d5f1a3658228390.tar.gz SheMov-9a6a0bbaaf1fd12a4d91d2ad0d5f1a3658228390.tar.bz2 SheMov-9a6a0bbaaf1fd12a4d91d2ad0d5f1a3658228390.zip |
Clean up filesystemfileproxy.cpp
Remove unneccessary includes and forward declarations.
-rw-r--r-- | filesystemfileproxy.cpp | 6 | ||||
-rw-r--r-- | filesystemfileproxy.h | 5 |
2 files changed, 1 insertions, 10 deletions
diff --git a/filesystemfileproxy.cpp b/filesystemfileproxy.cpp index 524456c..f68b3d2 100644 --- a/filesystemfileproxy.cpp +++ b/filesystemfileproxy.cpp @@ -5,13 +5,7 @@ 2 of the License, or (at your option) any later version. */ -#include <QModelIndex> -#include <QVariant> -#include <QtWidgets/QFileSystemModel> -#include <QFileInfo> #include <QDateTime> -#include <QFont> -#include <QLocale> #include "filesystemfileproxy.h" #include "smdirmodel.h" diff --git a/filesystemfileproxy.h b/filesystemfileproxy.h index e829158..1d29051 100644 --- a/filesystemfileproxy.h +++ b/filesystemfileproxy.h @@ -10,14 +10,11 @@ #include <QSortFilterProxyModel> -class QModelIndex; -class QVariant; - class FilesystemFileProxy : public QSortFilterProxyModel { Q_OBJECT public: FilesystemFileProxy(QObject *parent = 0); - ~FilesystemFileProxy() {}; + ~FilesystemFileProxy() {} virtual QVariant data(const QModelIndex &index, int role) const; protected: |