summaryrefslogtreecommitdiffstats
path: root/logic/net/NetAction.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-02-08 17:56:14 +0100
committerPetr Mrázek <peterix@gmail.com>2015-04-12 20:57:17 +0200
commit4730f54df7edf4775dfddf45f77c60edd86c32d9 (patch)
tree22fe05326976cbdadf150c1cfe0710f375e34edf /logic/net/NetAction.h
parent7a71ecd8af0454e405b25080a4b266fc99306269 (diff)
downloadMultiMC-4730f54df7edf4775dfddf45f77c60edd86c32d9.tar
MultiMC-4730f54df7edf4775dfddf45f77c60edd86c32d9.tar.gz
MultiMC-4730f54df7edf4775dfddf45f77c60edd86c32d9.tar.lz
MultiMC-4730f54df7edf4775dfddf45f77c60edd86c32d9.tar.xz
MultiMC-4730f54df7edf4775dfddf45f77c60edd86c32d9.zip
SCRATCH separate the generic updater logic from the application
Diffstat (limited to 'logic/net/NetAction.h')
-rw-r--r--logic/net/NetAction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/logic/net/NetAction.h b/logic/net/NetAction.h
index 81cb1bdb..b306bdfe 100644
--- a/logic/net/NetAction.h
+++ b/logic/net/NetAction.h
@@ -19,6 +19,7 @@
#include <QUrl>
#include <memory>
#include <QNetworkReply>
+#include <logic/QObjectPtr.h>
enum JobStatus
{
@@ -58,7 +59,7 @@ public:
public:
/// the network reply
- std::shared_ptr<QNetworkReply> m_reply;
+ QObjectPtr<QNetworkReply> m_reply;
/// the content of the content-type header
QString m_content_type;