diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-01-10 22:08:00 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-01-10 22:08:00 +0100 |
commit | 8e286c2b5c432e972df2e94b01481bbe094e464c (patch) | |
tree | 2fcf2151cd65057efd3ac215e8c944f00959e6ea /logic/net/CacheDownload.h | |
parent | 9ddf2aec31e33e8e0fa450d0084f115471401ad4 (diff) | |
download | MultiMC-8e286c2b5c432e972df2e94b01481bbe094e464c.tar MultiMC-8e286c2b5c432e972df2e94b01481bbe094e464c.tar.gz MultiMC-8e286c2b5c432e972df2e94b01481bbe094e464c.tar.lz MultiMC-8e286c2b5c432e972df2e94b01481bbe094e464c.tar.xz MultiMC-8e286c2b5c432e972df2e94b01481bbe094e464c.zip |
Make CacheDownload use QSaveFile
Diffstat (limited to 'logic/net/CacheDownload.h')
-rw-r--r-- | logic/net/CacheDownload.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/logic/net/CacheDownload.h b/logic/net/CacheDownload.h index e25aecd2..921e231b 100644 --- a/logic/net/CacheDownload.h +++ b/logic/net/CacheDownload.h @@ -17,8 +17,8 @@ #include "NetAction.h" #include "HttpMetaCache.h" -#include <QFile> -#include <qcryptographichash.h> +#include <QCryptographicHash> +#include <QSaveFile> typedef std::shared_ptr<class CacheDownload> CacheDownloadPtr; class CacheDownload : public NetAction @@ -29,7 +29,7 @@ public: /// if saving to file, use the one specified in this string QString m_target_path; /// this is the output file, if any - QFile m_output_file; + QSaveFile m_output_file; /// the hash-as-you-download QCryptographicHash md5sum; |