summaryrefslogtreecommitdiffstats
path: root/shemovcleaner.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2016-09-02 21:23:37 +0200
committerArno <arno@disconnect.de>2016-09-02 21:23:37 +0200
commit86d3baf2c6c6ff3bb987dcd30cd606f0a45ef626 (patch)
tree59200a68c08325a46a144a2f1c9e393eadec4e86 /shemovcleaner.cpp
parent8203bdcbdbc8c121831db0d197a89842b7178f59 (diff)
downloadShemovCleaner-86d3baf2c6c6ff3bb987dcd30cd606f0a45ef626.tar.gz
ShemovCleaner-86d3baf2c6c6ff3bb987dcd30cd606f0a45ef626.tar.bz2
ShemovCleaner-86d3baf2c6c6ff3bb987dcd30cd606f0a45ef626.zip
Basic Version of FileWidget
It checks the DB for md5sums and colors the files accordingly. As I said: very basic!
Diffstat (limited to 'shemovcleaner.cpp')
-rw-r--r--shemovcleaner.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/shemovcleaner.cpp b/shemovcleaner.cpp
index e6147c9..59653ae 100644
--- a/shemovcleaner.cpp
+++ b/shemovcleaner.cpp
@@ -13,6 +13,7 @@
#include "shemovcleaner.h"
#include "torrentwidget.h"
+#include "filewidget.h"
#include "torrentdisplay.h"
#include "configurationwidget.h"
@@ -25,7 +26,9 @@ ShemovCleaner::ShemovCleaner(QWidget *parent, Qt::WindowFlags f) : QMainWindow(p
mTorrentTab = new TorrentWidget;
mTab = new QTabWidget;
+ mFileTab = new FileWidget;
mTab->addTab(mTorrentTab, tr("Torrents"));
+ mTab->addTab(mFileTab, tr("Files"));
setCentralWidget(mTab);
createStatusBar();