aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-16 19:23:25 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-05-06 13:58:09 -0700
commit6f8cc5aafecdbbd824be8872c6c4d837d725ef40 (patch)
tree7894c489d5ad8228f67c32d916772e4205895a7a
parent418b160731aeb917a4e4a1cf078363f5dac63f8e (diff)
downloadsubsurface-6f8cc5aafecdbbd824be8872c6c4d837d725ef40.tar.gz
Cleanup: remove DivePictureThumbnailThread
An empty class that was not used anywhere. This allows us to remove a few include files as well. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r--desktop-widgets/divepicturewidget.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/desktop-widgets/divepicturewidget.h b/desktop-widgets/divepicturewidget.h
index d5457cbc2..b9253655b 100644
--- a/desktop-widgets/divepicturewidget.h
+++ b/desktop-widgets/divepicturewidget.h
@@ -2,10 +2,7 @@
#ifndef DIVEPICTUREWIDGET_H
#define DIVEPICTUREWIDGET_H
-#include <QAbstractTableModel>
#include <QListView>
-#include <QThread>
-#include <QFuture>
class DivePictureWidget : public QListView {
Q_OBJECT
@@ -21,7 +18,4 @@ signals:
void zoomLevelChanged(int delta);
};
-class DivePictureThumbnailThread : public QThread {
-};
-
#endif