run clang-format to apply new qualifier alignment

Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
Octol1ttle 2026-02-25 12:31:31 +05:00
parent 1486e40f14
commit dde1d21cbc
No known key found for this signature in database
GPG key ID: B77C34313AEE1FFF
4 changed files with 6 additions and 6 deletions

View file

@ -565,7 +565,7 @@ InstanceList::InstListError InstanceList::loadList()
void InstanceList::updateTotalPlayTime()
{
totalPlayTime = 0;
for (auto const& itr : m_instances) {
for (const auto& itr : m_instances) {
totalPlayTime += itr->totalTimePlayed();
}
}
@ -1032,9 +1032,9 @@ QString InstanceList::getStagedInstancePath()
}
bool InstanceList::commitStagedInstance(const QString& path,
InstanceName const& instanceName,
const InstanceName& instanceName,
QString groupName,
InstanceTask const& commiting)
const InstanceTask& commiting)
{
if (groupName.isEmpty() && !groupName.isNull())
groupName = QString();