aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/flame/FlameAPI.cpp
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-07-10 15:15:25 -0300
committerflow <flowlnlnln@gmail.com>2022-07-17 11:33:45 -0300
commitde9e304236ac0c11dd2b6bfb8b6f55943349c0e9 (patch)
tree1dd0624ef00fb1f7b82bf68a668ac0271f03d69b /launcher/modplatform/flame/FlameAPI.cpp
parent650af5eb64d3c560044cf1e806159f1d64985aa6 (diff)
downloadPrismLauncher-de9e304236ac0c11dd2b6bfb8b6f55943349c0e9.tar.gz
PrismLauncher-de9e304236ac0c11dd2b6bfb8b6f55943349c0e9.tar.bz2
PrismLauncher-de9e304236ac0c11dd2b6bfb8b6f55943349c0e9.zip
fix: std::list -> QList
Qt6 removed Qlist::toStdList() :sob: Signed-off-by: flow <flowlnlnln@gmail.com>
Diffstat (limited to 'launcher/modplatform/flame/FlameAPI.cpp')
-rw-r--r--launcher/modplatform/flame/FlameAPI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlameAPI.cpp b/launcher/modplatform/flame/FlameAPI.cpp
index e40d84f7..0ff04f72 100644
--- a/launcher/modplatform/flame/FlameAPI.cpp
+++ b/launcher/modplatform/flame/FlameAPI.cpp
@@ -7,7 +7,7 @@
#include "net/Upload.h"
-auto FlameAPI::matchFingerprints(const std::list<uint>& fingerprints, QByteArray* response) -> NetJob::Ptr
+auto FlameAPI::matchFingerprints(const QList<uint>& fingerprints, QByteArray* response) -> NetJob::Ptr
{
auto* netJob = new NetJob(QString("Flame::MatchFingerprints"), APPLICATION->network());