Fix FetchFlameAPIKey compile error

This commit is contained in:
Evan Goode 2025-01-11 19:37:53 -05:00
parent ccc886b51f
commit 8cd807c2d6
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;