diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-05 16:09:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 16:09:04 +0100 |
commit | 7ed5f8d90ce25431fb120698c8a079807df7c13a (patch) | |
tree | a51da22df1818b915817c0c83b6766b5d5a67bc0 /lib/jobs/downloadfilejob.h | |
parent | c1bfb156844aa3c53b1588c48ba2002143199510 (diff) | |
parent | 9fc7bfd5ef1daf84307d553941855fb377fddc7c (diff) | |
download | libquotient-7ed5f8d90ce25431fb120698c8a079807df7c13a.tar.gz libquotient-7ed5f8d90ce25431fb120698c8a079807df7c13a.zip |
Merge pull request #532 from quotient-im/kitsune/implptr
ImplPtr
Diffstat (limited to 'lib/jobs/downloadfilejob.h')
-rw-r--r-- | lib/jobs/downloadfilejob.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/jobs/downloadfilejob.h b/lib/jobs/downloadfilejob.h index 9e807fe7..f8c62e4b 100644 --- a/lib/jobs/downloadfilejob.h +++ b/lib/jobs/downloadfilejob.h @@ -13,13 +13,12 @@ public: DownloadFileJob(const QString& serverName, const QString& mediaId, const QString& localFilename = {}); - ~DownloadFileJob() override; QString targetFileName() const; private: class Private; - QScopedPointer<Private> d; + ImplPtr<Private> d; void doPrepare() override; void onSentRequest(QNetworkReply* reply) override; |