Final clean up for pull request

Signed-off-by: Ice Yeti <101294194+IceYetiWins@users.noreply.github.com>
This commit is contained in:
Ice Yeti 2026-06-14 17:23:10 -04:00 committed by Ice Yeti
parent cb105b720b
commit 08d9e57d96
10 changed files with 44 additions and 44 deletions

View file

@ -607,11 +607,11 @@ void InstanceList::providerUpdated()
}
}
QList<BaseInstance*> InstanceList::getAllInstances()
QList<BaseInstance*> InstanceList::getAllInstances() const
{
QList<BaseInstance*> instanceList;
for (auto& inst : instances) {
for (const auto& inst : instances) {
instanceList.append(inst.get());
}