fix: delete semicolons at the end of .cpp file's functions
my lsp is weird sometimes
This commit is contained in:
parent
9c57b54a81
commit
b3c2a56ece
@ -29,7 +29,7 @@ void NetworkModAPI::searchMods(CallerType* caller, SearchArgs&& args) const
|
|||||||
});
|
});
|
||||||
|
|
||||||
netJob->start();
|
netJob->start();
|
||||||
};
|
}
|
||||||
|
|
||||||
void NetworkModAPI::getVersions(CallerType* caller, const QString& addonId) const
|
void NetworkModAPI::getVersions(CallerType* caller, const QString& addonId) const
|
||||||
{
|
{
|
||||||
@ -57,4 +57,4 @@ void NetworkModAPI::getVersions(CallerType* caller, const QString& addonId) cons
|
|||||||
});
|
});
|
||||||
|
|
||||||
netJob->start();
|
netJob->start();
|
||||||
};
|
}
|
||||||
|
@ -9,12 +9,12 @@ const char* ListModel::sorts[6]{ "Featured", "Popularity", "LastUpdated", "Name"
|
|||||||
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
||||||
{
|
{
|
||||||
FlameMod::loadIndexedPack(m, obj);
|
FlameMod::loadIndexedPack(m, obj);
|
||||||
};
|
}
|
||||||
|
|
||||||
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
||||||
{
|
{
|
||||||
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
FlameMod::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
||||||
};
|
}
|
||||||
|
|
||||||
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
|
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,7 @@ void ListModel::loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj)
|
|||||||
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
void ListModel::loadIndexedPackVersions(ModPlatform::IndexedPack& m, QJsonArray& arr)
|
||||||
{
|
{
|
||||||
Modrinth::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
Modrinth::loadIndexedPackVersions(m, arr, APPLICATION->network(), m_parent->m_instance);
|
||||||
};
|
}
|
||||||
|
|
||||||
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
|
QJsonArray ListModel::documentToArray(QJsonDocument& obj) const
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user