summaryrefslogtreecommitdiffstats
path: root/api/logic/screenshots
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-05-03 21:09:36 +0200
committerPetr Mrázek <peterix@gmail.com>2017-05-03 21:09:36 +0200
commit0efa714ba55a33ea6dbcbd08b50c0b09675ce83b (patch)
treece808691e468d1a82a65dbcc9ed76cb29e59489e /api/logic/screenshots
parent907aa367046bde6ad05893917cff11320019ddda (diff)
downloadMultiMC-0efa714ba55a33ea6dbcbd08b50c0b09675ce83b.tar
MultiMC-0efa714ba55a33ea6dbcbd08b50c0b09675ce83b.tar.gz
MultiMC-0efa714ba55a33ea6dbcbd08b50c0b09675ce83b.tar.lz
MultiMC-0efa714ba55a33ea6dbcbd08b50c0b09675ce83b.tar.xz
MultiMC-0efa714ba55a33ea6dbcbd08b50c0b09675ce83b.zip
NOISSUE replace std::shared_ptr with shared_qobject_ptr for all download tasks
Diffstat (limited to 'api/logic/screenshots')
-rw-r--r--api/logic/screenshots/ImgurAlbumCreation.h2
-rw-r--r--api/logic/screenshots/ImgurUpload.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/api/logic/screenshots/ImgurAlbumCreation.h b/api/logic/screenshots/ImgurAlbumCreation.h
index af5b9a2f..dd398491 100644
--- a/api/logic/screenshots/ImgurAlbumCreation.h
+++ b/api/logic/screenshots/ImgurAlbumCreation.h
@@ -4,7 +4,7 @@
#include "multimc_logic_export.h"
-typedef std::shared_ptr<class ImgurAlbumCreation> ImgurAlbumCreationPtr;
+typedef shared_qobject_ptr<class ImgurAlbumCreation> ImgurAlbumCreationPtr;
class MULTIMC_LOGIC_EXPORT ImgurAlbumCreation : public NetAction
{
public:
diff --git a/api/logic/screenshots/ImgurUpload.h b/api/logic/screenshots/ImgurUpload.h
index 4fcf5233..fed650f0 100644
--- a/api/logic/screenshots/ImgurUpload.h
+++ b/api/logic/screenshots/ImgurUpload.h
@@ -1,10 +1,11 @@
#pragma once
#include "net/NetAction.h"
#include "Screenshot.h"
+#include "QObjectPtr.h"
#include "multimc_logic_export.h"
-typedef std::shared_ptr<class ImgurUpload> ImgurUploadPtr;
+typedef shared_qobject_ptr<class ImgurUpload> ImgurUploadPtr;
class MULTIMC_LOGIC_EXPORT ImgurUpload : public NetAction
{
public: