Fix FetchFlameAPIKey compile error

This commit is contained in:
Evan Goode 2025-01-11 19:37:53 -05:00 committed by Luna
parent 491cb1e5a2
commit 31d99a35e7
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#include <ui/dialogs/CustomMessageBox.h>
#include <ui/dialogs/ProgressDialog.h>
FetchFlameAPIKey::FetchFlameAPIKey(QObject* parent) : Task{ parent } {}
FetchFlameAPIKey::FetchFlameAPIKey() : Task{} {}
// Here, we fetch the official CurseForge API key from the files of the
// CurseForge app. We range-request the specific ~84KiB zlib block inside the

View File

@ -26,7 +26,7 @@
class FetchFlameAPIKey : public Task {
Q_OBJECT
public:
explicit FetchFlameAPIKey(QObject* parent = nullptr);
explicit FetchFlameAPIKey();
QString m_result;