aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform
diff options
context:
space:
mode:
authorflow <thiagodonato300@gmail.com>2022-03-07 19:55:20 -0300
committerflow <thiagodonato300@gmail.com>2022-03-07 19:55:20 -0300
commitb3c2a56ece925bc6fe327b8824c50f194610b5b9 (patch)
tree1180f8815bab478912eaf4e8050ec36f78602a32 /launcher/ui/pages/modplatform
parent9c57b54a81a9026aa86a983a203df17c023eaa8d (diff)
downloadPrismLauncher-b3c2a56ece925bc6fe327b8824c50f194610b5b9.tar.gz
PrismLauncher-b3c2a56ece925bc6fe327b8824c50f194610b5b9.tar.bz2
PrismLauncher-b3c2a56ece925bc6fe327b8824c50f194610b5b9.zip
fix: delete semicolons at the end of .cpp file's functions
my lsp is weird sometimes
Diffstat (limited to 'launcher/ui/pages/modplatform')
-rw-r--r--launcher/ui/pages/modplatform/flame/FlameModModel.cpp4
-rw-r--r--launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/launcher/ui/pages/modplatform/flame/FlameModModel.cpp b/launcher/ui/pages/modplatform/flame/FlameModModel.cpp
index ce2f74f1..8437f623 100644
--- a/launcher/ui/pages/modplatform/flame/FlameModModel.cpp
+++ b/launcher/ui/pages/modplatform/flame/FlameModModel.cpp
@@ -9,12 +9,12 @@ const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name"
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
{
FlameMod::loadIndexedPack(m, obj);
-};
+}
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
-};
+}
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
{
diff --git a/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp b/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp
index 0db6aeff..ac3c14f2 100644
--- a/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp
+++ b/launcher/ui/pages/modplatform/modrinth/ModrinthModel.cpp
@@ -14,7 +14,7 @@ void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
{
Modrinth::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
-};
+}
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
{