summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/divepicturewidget.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-06 10:39:59 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-06 11:30:11 -0800
commit9edb4f3fa91b3907809375794d75a1b1a77c94a0 (patch)
treecd3b194081d0b928c5cb56aed0df7b9bc469fdd7 /desktop-widgets/divepicturewidget.h
parentbb566f7798f1bc7fe8e4d40813823dca0f6ea9a3 (diff)
downloadsubsurface-9edb4f3fa91b3907809375794d75a1b1a77c94a0.tar.gz
Move ImageDownloader out of the desktop widgets
This required a bit more untangling, but with this it seems we can build subsurface-mobile again (at least on the desktop). Interesting is the removal from inside the ImageDownloader of the call to DivePictureModel::instance()->updateDivePictures() - which actually could cause some interesting recursion issues. If it turns out we did indeed need this, it needs to be re-architected. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/divepicturewidget.h')
-rw-r--r--desktop-widgets/divepicturewidget.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/desktop-widgets/divepicturewidget.h b/desktop-widgets/divepicturewidget.h
index 54f5bb826..3dc9767f1 100644
--- a/desktop-widgets/divepicturewidget.h
+++ b/desktop-widgets/divepicturewidget.h
@@ -5,19 +5,6 @@
#include <QListView>
#include <QThread>
#include <QFuture>
-#include <QNetworkReply>
-
-class ImageDownloader : public QObject {
- Q_OBJECT;
-public:
- ImageDownloader(struct picture *picture);
- void load();
-private:
- struct picture *picture;
- QNetworkAccessManager manager;
-private slots:
- void saveImage(QNetworkReply *reply);
-};
class DivePictureWidget : public QListView {
Q_OBJECT