diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-04-22 00:55:11 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-04-22 00:55:11 +0300 |
commit | 75116364c6daea5affb029038d2a7d20bc601beb (patch) | |
tree | 44e2cc4f8695a1569873d82dee080e30f10b3075 /launcher/ui | |
parent | f7931c2ee202025740caf424fa00ffb76743a1d2 (diff) | |
download | PrismLauncher-75116364c6daea5affb029038d2a7d20bc601beb.tar.gz PrismLauncher-75116364c6daea5affb029038d2a7d20bc601beb.tar.bz2 PrismLauncher-75116364c6daea5affb029038d2a7d20bc601beb.zip |
Small Cleanup
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/pages/modplatform/ModModel.cpp | 1 | ||||
-rw-r--r-- | launcher/ui/pages/modplatform/ResourceModel.cpp | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/ModModel.cpp b/launcher/ui/pages/modplatform/ModModel.cpp index b69d2cf9..251200f7 100644 --- a/launcher/ui/pages/modplatform/ModModel.cpp +++ b/launcher/ui/pages/modplatform/ModModel.cpp @@ -20,7 +20,6 @@ ModModel::ModModel(BaseInstance const& base_inst, ResourceAPI* api) : ResourceMo auto meta = mod->metadata(); ModPlatform::IndexedPack pack{ meta->project_id, meta->provider, meta->name, meta->slug }; pack.loadedFileId = meta->file_id; - qWarning() << pack.loadedFileId; addPack(pack); } } diff --git a/launcher/ui/pages/modplatform/ResourceModel.cpp b/launcher/ui/pages/modplatform/ResourceModel.cpp index c7c34a7c..0e74395f 100644 --- a/launcher/ui/pages/modplatform/ResourceModel.cpp +++ b/launcher/ui/pages/modplatform/ResourceModel.cpp @@ -3,10 +3,10 @@ // SPDX-License-Identifier: GPL-3.0-only #include "ResourceModel.h" -#include <qlist.h> #include <QCryptographicHash> #include <QIcon> +#include <QList> #include <QMessageBox> #include <QPixmapCache> #include <QUrl> |