mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
run clang-format to apply new qualifier alignment
Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
1486e40f14
commit
dde1d21cbc
4 changed files with 6 additions and 6 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue