Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2015-02-12 15:46:20 +0300
committerKlaas Freitag <freitag@owncloud.com>2015-02-12 15:47:07 +0300
commiteada70ba44c057b505f911e8df97dd1ec59a8fd2 (patch)
treef9d776dca501fccc59804b6c935d17a13a37dbe5 /src/gui/sharedialog.h
parentbed34b1ddd645b584807f6512eebda45e46e79f4 (diff)
Sharedialog: Removed Thumbnail retrieval.
It uses an unstable API that the server does not really support. We need to postpone that. Removed for now.
Diffstat (limited to 'src/gui/sharedialog.h')
-rw-r--r--src/gui/sharedialog.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/gui/sharedialog.h b/src/gui/sharedialog.h
index 7bd87c19d..ae19fd22b 100644
--- a/src/gui/sharedialog.h
+++ b/src/gui/sharedialog.h
@@ -42,22 +42,6 @@ private:
};
-class ThumbnailJob : public AbstractNetworkJob {
- Q_OBJECT
-public:
- explicit ThumbnailJob(const QUrl& url, AccountPtr account, QObject* parent = 0);
-public slots:
- void start() Q_DECL_OVERRIDE;
-signals:
- void jobFinished(int statusCode, QByteArray reply);
-private slots:
- virtual bool finished() Q_DECL_OVERRIDE;
-private:
- QUrl _url;
-};
-
-
-
namespace Ui {
class ShareDialog;
}