diff options
Diffstat (limited to 'launcher/net/ApiDownload.cpp')
-rw-r--r-- | launcher/net/ApiDownload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/net/ApiDownload.cpp b/launcher/net/ApiDownload.cpp index df476ce8..aaa8ff65 100644 --- a/launcher/net/ApiDownload.cpp +++ b/launcher/net/ApiDownload.cpp @@ -37,7 +37,7 @@ auto ApiDownload::makeCached(QUrl url, MetaEntryPtr entry, Options options) -> D return dl; } -auto ApiDownload::makeByteArray(QUrl url, QByteArray* output, Options options) -> Download::Ptr +auto ApiDownload::makeByteArray(QUrl url, std::shared_ptr<QByteArray> output, Options options) -> Download::Ptr { auto dl = makeShared<ApiDownload>(); dl->m_url = url; |